fix: background & drawer

This commit is contained in:
puriphatt 2024-07-31 06:09:10 +00:00
parent a369b8528b
commit 43b53c176a
4 changed files with 25 additions and 4 deletions

View file

@ -121,6 +121,7 @@ function branchSetting() {}
side="left"
:breakpoint="599"
class="column justify-between no-wrap"
:class="{ dark: $q.dark.isActive }"
:width="mini ? 80 : 256"
show-if-above
>
@ -254,7 +255,13 @@ function branchSetting() {}
:deep(.q-drawer__content) {
border-radius: var(--radius-2);
background: var(--surface-1);
background-color: rgba(255, 255, 255, 0.5);
backdrop-filter: blur(11.2px);
-webkit-backdrop-filter: blur(11.2px);
&.dark {
background-color: hsla(var(--gray-10-hsl) / 0.5);
}
}
.dot {