carhop__carhop-theme__DEV/resources/css/components/page-header.css
Antoine M 4cd32a44cc
All checks were successful
continuous-integration/drone/push Build is passing
STYLE MAJOR CHANGE Reducing font-size and paddings everywhere
2025-10-08 15:51:47 +02:00

27 lines
502 B
CSS

.page-header {
@apply bg-primary text-white py-16 items-center;
&__inner {
@apply grid grid-cols-1 gap-x-24 gap-y-20 !py-0;
@screen lg {
grid-template-columns: 61.8fr 38.2fr;
}
@screen 2xl {
@apply !py-6;
}
}
&__title {
@apply !text-white;
}
&__subtitle {
@apply text-white text-5xl;
}
&__description {
@apply mb-8 lg:mb-16;
}
&__cta {
@apply internal-link-with-icon internal-link-with-icon--white;
}
}