Merge remote-tracking branch 'origin/master'

This commit is contained in:
M_Kececi
2026-03-03 11:20:47 +03:00
parent 24774863bf
commit cbcf08728a
3 changed files with 40 additions and 90 deletions

View File

@@ -23,7 +23,10 @@
<q-drawer
v-if="perm.loaded"
v-model="leftDrawerOpen"
show-if-above
:show-if-above="!$q.screen.lt.md"
:overlay="$q.screen.lt.md"
:behavior="$q.screen.lt.md ? 'mobile' : 'desktop'"
:breakpoint="1023"
bordered
class="bg-secondary text-white"
>
@@ -186,6 +189,15 @@ watch(
}
)
watch(
() => $q.screen.lt.md,
(isMobile) => {
if (isMobile) {
leftDrawerOpen.value = false
}
}
)
/* ================= MENU CONFIG ================= */