Line height in headers was too small, resulting in squashed lines in mobile view

This commit is contained in:
Halfdan 2022-11-11 14:18:33 +01:00
parent c5343ebaa7
commit ac9c216b4c
1 changed files with 3 additions and 2 deletions

View File

@ -67,7 +67,7 @@ body {
font-family : "Space Grotesk";
font-size : var(--base-font-size);
line-height : 165%;
line-height : 1.65rem;
text-align : left;
border-right : var(--base-grid) solid var(--bar-color);
@ -77,8 +77,9 @@ a {
color : var(--text-color);
}
h1, h2, h3, h4, h5, h6, b, strong {
h1, h2, h3, h4, h5, h6 {
font-weight : 700;
line-height : 3rem;
}
main h1 {