From: Kenneth C. Arnold <kenneth.arnold@gmail.com>
Date: Wed, 19 Jan 2022 19:28:25 +0000 (-0500)
Subject: Make line-height unitless (#56)
X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=HEAD;p=brevno-suite%2Fthemes%2Fxmin

Make line-height unitless (#56)

With fixed units, the line height is too small for headings that wrap (e.g., long post titles).
---

diff --git a/static/css/style.css b/static/css/style.css
index 4dc3ae4..0b51cd6 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -2,7 +2,7 @@ body {
   max-width: 800px;
   margin: auto;
   padding: 1em;
-  line-height: 1.5em;
+  line-height: 1.5;
 }
 
 /* header and footer areas */