From b0f3b69bdaf77cbcc3215a444a50dd7c0ca13e7a Mon Sep 17 00:00:00 2001 From: Jin Yi Date: Wed, 11 Mar 2026 08:13:48 +0900 Subject: [PATCH] fix: add text color and increase size for nav badge count (#9713) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Fix nav sidebar badge count not visible due to missing text color, and increase badge size for better readability. ## Changes - **What**: Added explicit `text-base-background` color and increased min size (`min-h-5 min-w-5`) with padding to the StatusBadge in NavItem so the count number is visible in dark mode. ## Review Focus The parent NavItem div sets `text-base-foreground` which was overriding the StatusBadge's contrast severity text color, making the count invisible against the badge background. ## As-is 스크린샷 2026-03-10 오후 9 28 17 ## To-be 스크린샷 2026-03-10 오후 9 34 48 ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-9713-fix-add-text-color-and-increase-size-for-nav-badge-count-31f6d73d36508114874be2e31627099a) by [Unito](https://www.unito.io) Co-authored-by: Amp --- src/components/widget/nav/NavItem.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/widget/nav/NavItem.vue b/src/components/widget/nav/NavItem.vue index 79116e5bcf..179ee6357c 100644 --- a/src/components/widget/nav/NavItem.vue +++ b/src/components/widget/nav/NavItem.vue @@ -25,7 +25,7 @@ :label="String(badge)" severity="contrast" variant="circle" - class="ml-auto" + class="ml-auto min-h-5 min-w-5 px-1 text-base-background" />