From f13aac7331c84c4907f6d6d064bcccf4ee1fdd0c Mon Sep 17 00:00:00 2001 From: CatsJuice Date: Fri, 7 Feb 2025 08:01:58 +0000 Subject: [PATCH] chore(core): adjust starter-bar badge size (#9976) --- .../blocksuite/block-suite-editor/starter-bar.css.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/packages/frontend/core/src/components/blocksuite/block-suite-editor/starter-bar.css.ts b/packages/frontend/core/src/components/blocksuite/block-suite-editor/starter-bar.css.ts index 05a7c33e95..6db90f6f79 100644 --- a/packages/frontend/core/src/components/blocksuite/block-suite-editor/starter-bar.css.ts +++ b/packages/frontend/core/src/components/blocksuite/block-suite-editor/starter-bar.css.ts @@ -59,9 +59,12 @@ export const badge = style({ }); export const badgeIcon = style({ - fontSize: 16, + fontSize: 20, lineHeight: 0, color: cssVarV2.icon.primary, }); -export const badgeText = style({}); +export const badgeText = style({ + fontSize: 15, + lineHeight: '24px', +});