From 8185c7e8926a384e5c4f3f9adc1ac228e64f4be8 Mon Sep 17 00:00:00 2001 From: Sergey Pedan Date: Mon, 3 Feb 2020 07:16:01 +0700 Subject: [PATCH] Increases line height for p, ul & ol --- 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 e0bb85147c..747bda03fd 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%; }