diff --git a/src/layouts/DrawerComponent.vue b/src/layouts/DrawerComponent.vue index f5418d38..51ace954 100644 --- a/src/layouts/DrawerComponent.vue +++ b/src/layouts/DrawerComponent.vue @@ -1,16 +1,88 @@ @@ -327,4 +547,45 @@ function branchSetting() {} display: inline-block; border: 1.5px solid white; } + +:deep(.active-menu) { + color: white !important; + background: var(--brand-1) !important; + + i.q-icon.mdi.mdi-chevron-down.q-expansion-item__toggle-icon.q-expansion-item__toggle-icon--rotated { + color: white !important; + } +} + +.sub-menu { + font-weight: 400; + .active { + &::before { + content: ''; + display: inline-block; + margin-left: -3px; + width: 4px; + height: 18px; + border-radius: 50px; + background-color: var(--brand-2); + } + color: var(--brand-1) !important; + font-weight: bold; + } + + &:hover { + nav::before { + content: ''; + display: inline-block; + margin-left: -3px; + width: 4px; + height: 18px; + border-radius: 50px; + background-color: var(--brand-2); + } + color: var(--brand-1) !important; + cursor: pointer; + font-weight: bold; + } +}