chore(core): adjust starter-bar badge size (#9976)

This commit is contained in:
CatsJuice
2025-02-07 08:01:58 +00:00
parent 4b1c931503
commit f13aac7331

View File

@@ -59,9 +59,12 @@ export const badge = style({
}); });
export const badgeIcon = style({ export const badgeIcon = style({
fontSize: 16, fontSize: 20,
lineHeight: 0, lineHeight: 0,
color: cssVarV2.icon.primary, color: cssVarV2.icon.primary,
}); });
export const badgeText = style({}); export const badgeText = style({
fontSize: 15,
lineHeight: '24px',
});