26 lines
418 B
CSS
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;
|
|
}
|
|
}
|