diff --git a/src/views/contents/QuickyContentEditor.vue b/src/views/contents/QuickyContentEditor.vue
index ce26475..b2f2179 100644
--- a/src/views/contents/QuickyContentEditor.vue
+++ b/src/views/contents/QuickyContentEditor.vue
@@ -65,7 +65,7 @@
@@ -115,6 +115,7 @@
mdi-minus
+
Ajouter un Vidéo Url
mdi-plus
@@ -246,28 +247,45 @@ const publishPost = async () => {
.relative {
position: relative;
}
+
.absolute {
position: absolute;
}
+
.transform {
transform: translateY(-50%);
}
+
.bg-black\/50 {
background-color: rgba(0, 0, 0, 0.5);
}
+
.rounded-md {
border-radius: 0.375rem;
}
+
.text-white {
color: #fff;
}
+
.p-2 {
padding: 0.5rem;
}
+
.text-red-500 {
color: #f56565;
}
+
.custom-border {
border-color: #eaebec;
}
+
+/* Taille fixe pour les éléments du carrousel */
+.carousel-item {
+ width: 400px;
+ height: 250px;
+ object-fit: cover;
+ border-radius: 0.375rem;
+ display: block;
+}