FEATURE Handling style of the authors when showed

This commit is contained in:
Nonimart 2025-06-25 12:25:22 +02:00
parent abb619207d
commit 7b8164c088

View File

@ -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;
}
}
}
}