Fix the content's height in App.vue

This commit is contained in:
2024-10-08 00:48:16 -04:00
parent 125863537f
commit 4fd80db40f

View File

@@ -6,10 +6,10 @@
<side-bar></side-bar> <side-bar></side-bar>
</div> </div>
<div class="pl-60 w-full min-h-screen"> <div class="pl-60 w-full">
<div v-if="!brandingStore.loading" <div v-if="!brandingStore.loading"
class="flex justify-center items-center" class="min-h-screen flex justify-center items-center"
:style="{backgroundColor: brandingStore.colors.background}"> :style="{backgroundColor: brandingStore.colors.background}">
<router-view></router-view> <router-view></router-view>
</div> </div>