Make line-height unitless (#56) master
authorKenneth C. Arnold <kenneth.arnold@gmail.com>
Wed, 19 Jan 2022 19:28:25 +0000 (14:28 -0500)
committerGitHub <noreply@github.com>
Wed, 19 Jan 2022 19:28:25 +0000 (13:28 -0600)
With fixed units, the line height is too small for headings that wrap (e.g., long post titles).

static/css/style.css

index 4dc3ae450f0ca15922f12d60b43b02007180ad72..0b51cd655663777b2169b4a5f4a3ea109f1c8c90 100644 (file)
@@ -2,7 +2,7 @@ body {
   max-width: 800px;
   margin: auto;
   padding: 1em;
-  line-height: 1.5em;
+  line-height: 1.5;
 }
 
 /* header and footer areas */