From 3b9ced440c337a543eb748bfb84affa793a2c21d Mon Sep 17 00:00:00 2001 From: Antoine Date: Mon, 12 May 2025 16:49:44 +0200 Subject: [PATCH] STYLE Introducing styles --- resources/css/components/article-card.css | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 resources/css/components/article-card.css diff --git a/resources/css/components/article-card.css b/resources/css/components/article-card.css new file mode 100644 index 0000000..58d51c2 --- /dev/null +++ b/resources/css/components/article-card.css @@ -0,0 +1,10 @@ +.article-card { + @apply bg-white border border-primary p-4; + + &__title { + @apply text-3xl font-medium uppercase pb-4; + } + &__tags { + @apply flex flex-wrap gap-4 pt-4; + } +}