Remove colors

This commit is contained in:
2025-02-08 02:38:41 -05:00
parent f4794fb817
commit 7f4e7ead40
36 changed files with 855 additions and 1138 deletions

View File

@@ -2,15 +2,14 @@
<v-app>
<div class="flex flex-row">
<!-- Side Bar for larger screens -->
<div v-if="!smAndDown" class="border-r-2 z-30">
<div v-if="!smAndDown" class="border-r-1 z-30">
<side-bar></side-bar>
</div>
<!-- Mobile -->
<div v-if="smAndDown" class="mobile-container">
<div v-if="!brandingStore.loading"
class="min-h-screen justify-center items-center"
:style="{ backgroundColor: brandingStore.colors.background }">
class="min-h-screen justify-center items-center bg-hBackground">
<router-view></router-view>
</div>
</div>
@@ -18,8 +17,7 @@
<!-- PC -->
<div v-if="!smAndDown" class="w-full ml-64">
<div v-if="!brandingStore.loading"
class="min-h-screen justify-center items-center"
:style="{ backgroundColor: brandingStore.colors.background }">
class="min-h-screen justify-center items-center bg-hBackground">
<router-view class="p-2"></router-view>
</div>
</div>