STYLE ajout de la taille de police et de la propriété line-height pour les titres h2 et h3 avec la classe uppercased-small-title
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Antoine M 2025-10-30 14:35:20 +01:00
parent 0523269c7a
commit 7dd5111a99

View File

@ -2,3 +2,20 @@
@apply nunito font-bold tracking-wider uppercase;
/* @apply nunito font-bold text-lg tracking-wider uppercase; */
}
h2 .uppercased-small-title {
font-size: 1.7rem !important;
line-height: inherit !important;
}
h2:has(.uppercased-small-title) {
line-height: 0.9 !important;
}
h3 .uppercased-small-title {
@apply text-xl;
line-height: inherit !important;
}
h3:has(.uppercased-small-title) {
line-height: 0.9 !important;
}