From 50fc665d2a11da0e1e1ed6082630a299cb97db00 Mon Sep 17 00:00:00 2001 From: "Kenneth C. Arnold" Date: Wed, 19 Jan 2022 14:28:25 -0500 Subject: Make line-height unitless (#56) With fixed units, the line height is too small for headings that wrap (e.g., long post titles). --- static/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- cgit