Transit
This commit is contained in:
25
frontend/src/views/creators/Banner.vue
Normal file
25
frontend/src/views/creators/Banner.vue
Normal file
@@ -0,0 +1,25 @@
|
||||
<template>
|
||||
<!-- PC -->
|
||||
<div class="shadow-lg rounded-2xl mt-2">
|
||||
<div class="relative z-20">
|
||||
|
||||
<div class="min-h-8 rounded-t-2xl shadow-lg"
|
||||
:style="{ backgroundColor: branding.colors.primary }"
|
||||
></div>
|
||||
|
||||
<actual-banner></actual-banner>
|
||||
<banner-actions></banner-actions>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {useBrandingStore} from "@/stores/brandingStore.js";
|
||||
import ActualBanner from "@/views/creators/ActualBanner.vue";
|
||||
import BannerActions from "@/views/creators/BannerActions.vue";
|
||||
|
||||
const branding = useBrandingStore();
|
||||
</script>
|
||||
Reference in New Issue
Block a user