From 85b3a984ac2c215c27060a97a373b46957130fe1 Mon Sep 17 00:00:00 2001 From: puriphatt Date: Thu, 1 Aug 2024 02:55:21 +0000 Subject: [PATCH] fix: drawer font color (dark) --- src/components/DrawerComponent.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/DrawerComponent.vue b/src/components/DrawerComponent.vue index e4b7c72d..a3e9ffb8 100644 --- a/src/components/DrawerComponent.vue +++ b/src/components/DrawerComponent.vue @@ -224,7 +224,12 @@ function branchSetting() {} #drawer-menu :deep(.q-item) { color: var(--gray-7); border-radius: var(--radius-2); + + &.dark { + color: var(--gray-3); + } } + #drawer-menu :deep(.q-item.active) { --_drawer-item-background-color: var(--brand-1) !important; background-color: var(--_drawer-item-background-color);