From c846798ff3f4cb19308c875cc37bf0a48537aa6d Mon Sep 17 00:00:00 2001 From: Adam Porter Date: Sun, 11 Sep 2022 08:25:48 -0500 Subject: [PATCH 1/2] * html/layout.css (p): Improve margins Previously, paragraphs only had bottom margins, which caused them to have nearly no spacing between them and other, non-paragraph page elements. This change maintains the same spacing between paragraphs, while adding space after other elements, which looks *much* better. --- html/layout.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/layout.css b/html/layout.css index 48f9aa5fc7..59d88a3bec 100644 --- a/html/layout.css +++ b/html/layout.css @@ -127,7 +127,7 @@ pre .kw { } p { - margin-bottom: 2em; + margin: 1em 0 1em 0; } p.centered { -- 2.34.0