From 7b8164c0886dd3616532f0c965c3da929892e8a7 Mon Sep 17 00:00:00 2001 From: Nonimart Date: Wed, 25 Jun 2025 12:25:22 +0200 Subject: [PATCH] FEATURE Handling style of the authors when showed --- resources/css/components/post-card--article.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/resources/css/components/post-card--article.css b/resources/css/components/post-card--article.css index 956db6d..cd732a3 100644 --- a/resources/css/components/post-card--article.css +++ b/resources/css/components/post-card--article.css @@ -2,4 +2,17 @@ .post-card__title { @apply text-2xl; } + + .post-card__authors { + @apply flex flex-wrap gap-8 pt-6; + li { + @apply text-lg flex items-center gap-2; + &::before { + @apply w-6 h-6 block rounded-full bg-no-repeat bg-center bg-contain; + content: ''; + background-image: url('../resources/img/icons/carhop-plume.svg'); + @apply filter-primary; + } + } + } }