FEATURE Refining component headings style

This commit is contained in:
Antoine M 2025-07-16 15:30:34 +02:00
parent bba1d4ee2d
commit 4e4d18158d

View File

@ -27,6 +27,13 @@
--content-box-text-color: #fff; --content-box-text-color: #fff;
} }
p,
li {
@apply font-light;
}
li {
@apply pb-2;
}
p { p {
@apply pb-8; @apply pb-8;
} }
@ -40,9 +47,32 @@
@apply max-w-screen-lg mx-auto px-8; @apply max-w-screen-lg mx-auto px-8;
} }
h3 { h3 {
@apply title-small font-bold; /* @apply title-small font-bold; */
} }
h1.wp-block-heading {
@apply !text-6xl mb-12;
}
h3.wp-block-heading {
@apply !text-4xl uppercase fjalla font-light tracking-wide;
}
h4.wp-block-heading {
@apply !text-2xl uppercase nunito font-medium tracking-widest pb-1;
}
ul + h3,
p + h3 {
@apply mt-12;
}
h3 + p {
@apply !mt-3;
}
ul {
list-style: disc;
padding-left: 1.5rem;
}
.carhop-heading:not(:first-child) { .carhop-heading:not(:first-child) {
@apply pt-32; @apply pt-32;
} }