From 36cd92b3e47c2c2f1bd07ff687555875739a48c7 Mon Sep 17 00:00:00 2001 From: Antoine M Date: Tue, 30 Sep 2025 15:30:13 +0200 Subject: [PATCH] STYLE Aligning the cta go on the bottom for each card with a flex fix --- resources/css/components/article-card.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/css/components/article-card.css b/resources/css/components/article-card.css index eb5b510..582ccb7 100644 --- a/resources/css/components/article-card.css +++ b/resources/css/components/article-card.css @@ -1,5 +1,5 @@ .article-card { - @apply bg-white border border-primary p-6 relative; + @apply bg-white border border-primary p-6 relative !flex flex-col; &:after { @apply content-[''] absolute inset-0 border-primary w-full h-full pointer-events-none; @@ -47,6 +47,6 @@ } } .cta--go { - @apply text-primary; + @apply text-primary mt-auto; } }