Fix the timing/loading issues with branding when navigating the site

This commit is contained in:
2024-10-07 18:39:46 -04:00
parent d1762e803c
commit a02695c81a
16 changed files with 114 additions and 90 deletions

View File

@@ -28,7 +28,7 @@ function unsubscribeFromCreator() {
:style="{
width: '150px',
height: '28px',
backgroundColor: brandingStore.value.colors.secondary,
backgroundColor: brandingStore.colors.secondary,
color: 'white',
borderRadius: '8px 0 0 8px',
padding: '10px 24px',
@@ -48,7 +48,7 @@ function unsubscribeFromCreator() {
:style="{
width: '150px',
height: '28px',
backgroundColor: brandingStore.value.colors.secondary,
backgroundColor: brandingStore.colors.secondary,
color: 'white',
borderRadius: '8px 0 0 8px',
padding: '10px 24px',
@@ -65,7 +65,7 @@ function unsubscribeFromCreator() {
<v-dialog v-model="showUnsubscribeModal" max-width="500">
<v-card class="text-center rounded-xl"
:style="{ border: `3px solid ${brandingStore.value.colors.secondary}` }">
:style="{ border: `3px solid ${brandingStore.colors.secondary}` }">
<div class="flex items-center justify-between py-4 text-2xl font-bold border-b mb-2">
<div class="flex-1 text-center">
@@ -82,10 +82,10 @@ function unsubscribeFromCreator() {
</v-btn>
<v-btn class="flex-grow-1"
:style="{ borderColor: brandingStore.value.colors.secondary, color: brandingStore.value.colors.secondary }"
:style="{ borderColor: brandingStore.colors.secondary, color: brandingStore.colors.secondary }"
variant="outlined"
@click="showUnsubscribeModal = false">
<div :style="{ color: brandingStore.value.colors.secondary }">Non</div>
<div :style="{ color: brandingStore.colors.secondary }">Non</div>
</v-btn>
</v-card-actions>
</v-card>