Fixes folders banneraction

This commit is contained in:
PascalMarchesseault
2024-08-19 16:16:44 -04:00
parent 0b7b27e50b
commit 27e2505fec
6 changed files with 11 additions and 15 deletions

View File

@@ -3,11 +3,11 @@
<div>
<div class="relative z-20">
<div>
<!-- Social Network-->
<!-- Social Network UpperPart-->
<div class="py-4 px-4 min-h-14 md:rounded-t-none lg:rounded-t-2xl"
:style="{ backgroundColor: creator.colors.bannerTop || '#6B0065' }">
<div class="w-full flex justify-between lg:justify-end gap-14 mt-2">
<div class="w-full flex justify-end gap-14 mt-2">
<a
v-for="socialNetwork in GetSocialsUrls()"
:href="socialNetwork.url"
@@ -23,7 +23,7 @@
</div>
</div>
<!--Banner & user info-->
<!--Banner -->
<div class="relative">
<!--Banner-->
<div>
@@ -32,8 +32,9 @@
alt="Profile Banner" style="max-height: 425px">
</div>
</div>
</div>
</div>
<!--actions - Lowerpart-->
<banner-actions :creator="creator" @content-posted="addContent"></banner-actions>
@@ -43,11 +44,7 @@
</template>
<script setup>
import CreatorAbout from "@/views/creators/CreatorAbout.vue";
import SubscribeButton from "@/views/creators/SubscribeButton.vue";
import PublishContentButton from "@/views/contents/PublishContentButton.vue";
import DonationButton from "@/views/creators/DonationButton.vue";
import BannerActions from "@/views/creators/banner/BannerActions.vue";
import BannerActions from "@/views/creators/banner/bannerlower/BannerActions.vue";
const props = defineProps({
creator: {type: Object, required: true},