App: Added a sidebar store with BannerAction to adjust the z-depth. CreatorLayout: Resized the content with the sidebar and added the option for a closed or open menu. Also added a value in SidebarStore to track the menu state for correct positioning.

This commit is contained in:
PascalMarchesseault
2024-11-03 10:34:57 -05:00
parent 589b4ef47b
commit 85adc04921
5 changed files with 93 additions and 111 deletions

View File

@@ -55,7 +55,7 @@
</div>
</div>
<div class="absolute bottom-6 right-8 z-30 shadow-2xl rounded-md text-white w-64 h-28 flex justify-center align-center"
<div class="absolute bottom-6 right-8 z-20 shadow-2xl rounded-md text-white w-64 h-28 flex justify-center align-center"
:style="{ backgroundColor: brandingStore.colors.secondary}">
<donation-button-banner

View File

@@ -1,6 +1,6 @@
<template>
<div class="flex flex-col min-h-screen max-w-[1200px] mx-auto">
<div class="flex flex-col min-h-screen max-w-[1100px] mx-auto">
<div v-if="brandingStore.loading">
<v-progress-linear indeterminate></v-progress-linear>
</div>