Start rework UI creatorpage

This commit is contained in:
PascalMarchesseault
2024-09-09 01:11:06 -04:00
parent 2fc2cbcae8
commit 2d9c71be5e
2 changed files with 9 additions and 9 deletions

View File

@@ -7,26 +7,26 @@
<div class="py-4 px-4 min-h-14 md:rounded-t-2xl"
:style="{ backgroundColor: creator.colors.bannerTop || '#6B0065' }">
<div class="w-full flex justify-end gap-6 max-h-8">
<div class="w-full flex justify-center gap-32 max-h-8">
<a
v-for="socialNetwork in GetSocialsUrls()"
:href="socialNetwork.url"
target="_blank"
class="text-white text-2xl transform transition-transform duration-200 hover:scale-125 hover:text-blue-500">
<v-icon v-if="socialNetwork.icon.includes('mdi')">{{ socialNetwork.icon }}</v-icon>
<img v-if="socialNetwork.icon.includes('tiktok')"
<img v-if="socialNetwork.icon.includes('tiktok')"
:src="socialNetwork.icon"
class="w-9 h-9"
class="w-5 h-5"
alt="Tiktok">
<img v-if="socialNetwork.icon.includes('websiteIcon')"
:src="socialNetwork.icon"
class="w-9 h-9"
:src="socialNetwork.icon"
class="w-5 h-5"
alt="Website">
</a>
</div>
</div>
</div>
<div class="max-h-2" :style="{ backgroundColor: creator.colors.accent || '#6B0065' }"> ></div>
<!--Banner-->
<div class="relative">
<div>
@@ -40,7 +40,7 @@
</div>
</div>
<div class="max-h-2" :style="{ backgroundColor: creator.colors.accent || '#6B0065' }"> ></div>
<!--actions - Lowerpart-->
<banner-actions :creator="creator" @content-posted="addContent"></banner-actions>
</div>