fix giant spacer on mobile

This commit is contained in:
Michael Genson
2026-04-10 15:49:18 +00:00
parent 29b9f58c5d
commit 544ee0c65c
2 changed files with 2 additions and 5 deletions

View File

@@ -8,7 +8,7 @@
width="100%" width="100%"
max-width="1200" max-width="1200"
> >
<div class="d-flex" style="height: 60vh"> <div class="d-flex" :style="{ height: useMobile ? '100%' : '60vh' }">
<!-- Nav list --> <!-- Nav list -->
<v-list <v-list
v-show="!useMobile || navOpen" v-show="!useMobile || navOpen"
@@ -43,9 +43,6 @@
<!-- Main content --> <!-- Main content -->
<div <div
class="flex-grow-1 overflow-y-auto" class="flex-grow-1 overflow-y-auto"
:style="{
height: useMobile ? '100%' : '60vh',
}"
> >
<v-btn <v-btn
v-if="useMobile" v-if="useMobile"

View File

@@ -35,7 +35,7 @@
</v-toolbar-title> </v-toolbar-title>
</v-toolbar> </v-toolbar>
<div> <div style="flex: 1 1 auto; min-height: 0; overflow: auto">
<slot v-bind="{ submitEvent }" /> <slot v-bind="{ submitEvent }" />
</div> </div>