From 07fb8da98ec6bbe0022bf856ce421469941e7880 Mon Sep 17 00:00:00 2001 From: PascalMarchesseault <97350299+PascalMarchesseault@users.noreply.github.com> Date: Sun, 1 Dec 2024 11:45:42 -0500 Subject: [PATCH] Update QuickyContentEditor.vue --- src/views/contents/QuickyContentEditor.vue | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) 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 @@ Carrousel Image @@ -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; +}