From f809f8d709add6c42d83dd8d61440967d1ca565f Mon Sep 17 00:00:00 2001 From: Billy Wilcosky <41351317+zerosonesfun@users.noreply.github.com> Date: Tue, 17 Mar 2026 09:24:35 -0400 Subject: [PATCH] Adjust margin-bottom for paragraphs and list items Added negative margin-bottom to paragraphs and list items. --- resources/less/forum.less | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/resources/less/forum.less b/resources/less/forum.less index f171d11..7fc2701 100644 --- a/resources/less/forum.less +++ b/resources/less/forum.less @@ -2,6 +2,7 @@ .PageHero { margin-bottom: 20px; } + .PageHero-items { padding: 0; margin: 0; @@ -11,6 +12,7 @@ display: inline-block; } } + .PageHero-title { > a { //color: @hero-color; @@ -19,7 +21,6 @@ vertical-align: middle; } - .Pages-container { max-width: 820px; white-space: pre-wrap; @@ -30,4 +31,11 @@ white-space: normal; } } + + //Reverse duplicate margin-bottom + p, + ul li, + ol li { + margin-bottom: -1em; + } }