homegrade_theme_production/resources/css/components/post-card.css
2023-05-10 11:42:44 +02:00

26 lines
418 B
CSS

.post-card {
@apply bg-white shadow-lg rounded-3xl;
&__thumbnail {
@apply rounded-t-3xl
h-[190px]
object-cover;
}
&__inner {
@apply p-8;
}
&__tag {
@apply bg-secondary-light
text-secondary
w-fit
px-4 py-1
rounded-xl
mb-4;
}
&__title {
@apply text-2xl font-bold mb-4 text-secondary;
line-height: 1.1;
}
}