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