Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/yihui/hugo-xmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth C. Arnold <kenneth.arnold@gmail.com>2022-01-19 22:28:25 +0300
committerGitHub <noreply@github.com>2022-01-19 22:28:25 +0300
commit50fc665d2a11da0e1e1ed6082630a299cb97db00 (patch)
tree88868022aff8584fb07288d92b3cbf858551bc32
parenta8ae2c5743f105b715bb9496e7659d599dbb75ba (diff)
Make line-height unitless (#56)
With fixed units, the line height is too small for headings that wrap (e.g., long post titles).
-rw-r--r--static/css/style.css2
1 files changed, 1 insertions, 1 deletions
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 */