From aaf5d9eda07b7ee433caefffce4b13be8a1d2f8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Corentin=20S=C3=A9chet?= Date: Wed, 22 May 2024 23:03:11 +0200 Subject: [PATCH] fix: increase line-height --- src/lib/css/typo.scss | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/lib/css/typo.scss b/src/lib/css/typo.scss index a649f53..3a05e73 100644 --- a/src/lib/css/typo.scss +++ b/src/lib/css/typo.scss @@ -24,7 +24,9 @@ body { font-family: "Montserrat", sans-serif; font-size: var(--fz-4); + font-size: var(--fz-4); color: var(--color-text); + line-height: 1.4; } h1 { @@ -45,26 +47,26 @@ h2 { } h3 { - margin: 0 0 var(--space-small) 0; + margin: 0 0 var(--space-medium) 0; font-size: var(--fz-3); font-weight: bold; } h4 { - margin: 0 0 var(--space-small) 0; + margin: 0 0 var(--space-medium) 0; font-size: var(--fz-4); font-weight: bold; } p { - margin: 0 0 var(--space-small) 0; + margin: 0 0 var(--space-medium) 0; } @media ($mobile-breakpoint) { h1, h2, h3 { - margin: 0 0 var(--space-small) 0; + margin: 0 0 var(--space-medium) 0; } }