From 334b8b6a058693913278b2f147e9c03883ab260d Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Thu, 7 Dec 2023 21:40:37 -0800 Subject: [PATCH] Add margin only to the top of a

following a

This way if something other than a paragraph follows the paragraph it won't automatically and unnecessarily be pushed down. --- src/scss/include/_common.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scss/include/_common.scss b/src/scss/include/_common.scss index 276da73..8249d65 100644 --- a/src/scss/include/_common.scss +++ b/src/scss/include/_common.scss @@ -109,7 +109,7 @@ pre { p { margin: 0; } -p + p { margin: 1rem 0; } +p + p { margin: 1rem 0 0 0; } .footdef { display: grid;