homegrade_theme_production/template-components/cards/card-news.css

29 lines
490 B
CSS

.card-news {
@apply bg-white shadow-lg rounded-3xl relative;
&__thumbnail {
@apply rounded-t-3xl
h-[190px]
object-cover;
}
&__inner {
@apply p-8 h-full;
}
&__heading {
@apply flex flex-col-reverse;
}
&__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;
}
}