Make line-height unitless (#56)

With fixed units, the line height is too small for headings that wrap (e.g., long post titles).
This commit is contained in:
Kenneth C. Arnold 2022-01-19 14:28:25 -05:00 committed by GitHub
parent a8ae2c5743
commit 50fc665d2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@ body {
max-width: 800px; max-width: 800px;
margin: auto; margin: auto;
padding: 1em; padding: 1em;
line-height: 1.5em; line-height: 1.5;
} }
/* header and footer areas */ /* header and footer areas */