mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-04-17 10:25:34 -04:00
fix giant spacer on mobile
This commit is contained in:
@@ -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"
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user