From 7dd5111a9943b74b6d81242ae34177945b32dcd7 Mon Sep 17 00:00:00 2001 From: Antoine M Date: Thu, 30 Oct 2025 14:35:20 +0100 Subject: [PATCH] =?UTF-8?q?STYLE=20ajout=20de=20la=20taille=20de=20police?= =?UTF-8?q?=20et=20de=20la=20propri=C3=A9t=C3=A9=20line-height=20pour=20le?= =?UTF-8?q?s=20titres=20h2=20et=20h3=20avec=20la=20classe=20uppercased-sma?= =?UTF-8?q?ll-title?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/css/base/format-types.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/resources/css/base/format-types.css b/resources/css/base/format-types.css index 28b0641..1529fee 100644 --- a/resources/css/base/format-types.css +++ b/resources/css/base/format-types.css @@ -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; +}