feat: Add validation for YouTube URL and enhance image upload experience in creator's album editor

This commit is contained in:
2025-04-24 03:20:08 -04:00
parent 7503f89e3f
commit c16dddb8dd
6 changed files with 483 additions and 142 deletions

View File

@@ -72,7 +72,6 @@ const displayedImages = computed(() => {
.image-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0.5rem;
width: 100%;
}
@@ -103,7 +102,7 @@ const displayedImages = computed(() => {
@media (max-width: 640px) {
.image-grid {
gap: 0.25rem;
grid-template-columns: repeat(3, 1fr);
}
}
</style>