FEAT developping block structure

This commit is contained in:
Antoine M 2025-05-15 15:09:53 +02:00
parent 1a29a57d0f
commit e606779c65

View File

@ -0,0 +1,41 @@
.block-revues-precedentes {
@apply bg-carhop-blue-50 py-32;
.block-revues-precedentes__header {
}
&__inner {
@apply max-w-screen-2xl mx-auto px-12 xl:px-24;
}
&__header {
@apply flex flex-col justify-center items-center gap-4;
.block-title {
@apply text-base mb-6 font-bold tracking-wider uppercase nunito;
}
.block-subtitle {
@apply text-5xl font-normal uppercase;
}
}
&__slider-content {
@apply py-16 pt-32;
}
.card-revue {
@apply grid gap-12 2xl:gap-24 pb-24;
grid-template-columns: 61.8fr 38.2fr;
.content-meta {
@apply col-span-2 w-full max-w-full mb-0;
}
&__image {
@apply w-full h-full object-cover;
}
&__content {
@apply p-6;
}
}
}