1
0
Fork 0
forked from Kispi/Core

fix(webapp): footer
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simon Giesel 2023-07-07 20:31:58 +02:00
parent 4f80b7e895
commit 8f544f224b
2 changed files with 12 additions and 6 deletions

View file

@ -3,11 +3,17 @@
:drawer-id="drawerId"
:navigation-entries="navigationEntries"
>
<div class="flex min-h-full grow flex-col">
<RouterView v-if="route.name != 'radio'" />
<ViewRadio v-show="route.name == 'radio'" />
<div class="flex min-h-screen flex-col items-stretch">
<RouterView
v-if="route.name != 'radio'"
class="shrink-0 grow"
/>
<ViewRadio
v-show="route.name == 'radio'"
class="shrink-0 grow"
/>
</div>
<AtomFooter v-if="route.name != 'bank'" />
<AtomFooter class="shrink-0" />
</MoleculeNavigationDrawer>
</template>

View file

@ -11,7 +11,7 @@
type="checkbox"
class="drawer-toggle"
/>
<div class="drawer-content flex h-screen flex-col overflow-y-scroll bg-base-300">
<div class="drawer-content flex flex-col bg-base-300 pl-64">
<div
class="navbar top-0 place-self-center shadow-lg"
:class="{
@ -38,7 +38,7 @@
</div>
<slot />
</div>
<div class="drawer-side">
<div class="drawer-side !fixed">
<label
:for="drawerId"
class="drawer-overlay"