fix(creator): styling for creator album

This commit is contained in:
2025-05-07 16:13:20 -04:00
parent 4492f8d6e6
commit e073ef8540
2 changed files with 2 additions and 39 deletions

View File

@@ -72,7 +72,7 @@
<!-- Video Section -->
<div v-if="videoUrl || isEditMode"
:class="['content-section', {
'rounded-t-xl': hasImages || isEditMode,
'rounded-t-xl': hasImages && !isEditMode,
'rounded-xl': !hasImages && !isEditMode
}]">
<div v-if="!isEditMode && videoUrl" class="video-container">
@@ -105,7 +105,7 @@
@update:images="updateImages"
@update:isEditMode="isEditMode = $event"
:class="['content-section', {
'rounded-b-xl': videoUrl || isEditMode,
'rounded-b-xl': videoUrl && !isEditMode,
'rounded-xl': !videoUrl && !isEditMode
}]"
/>