From ca4b85b8158dd39d005c0855ef0fa925821544aa Mon Sep 17 00:00:00 2001 From: Dylan DPC Date: Fri, 6 Mar 2020 01:06:19 +0100 Subject: [PATCH] Increases line height for p, ul & ol (#1136) --- src/theme/css/general.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/theme/css/general.css b/src/theme/css/general.css index e0bb8514..747bda03 100644 --- a/src/theme/css/general.css +++ b/src/theme/css/general.css @@ -78,6 +78,9 @@ h4 a.header:target { margin-right: auto; max-width: var(--content-max-width); } +.content p { line-height: 1.45em; } +.content ol { line-height: 1.45em; } +.content ul { line-height: 1.45em; } .content a { text-decoration: none; } .content a:hover { text-decoration: underline; } .content img { max-width: 100%; }