From 93bdcfb28615b047501f284f21bff7edf98fc4b9 Mon Sep 17 00:00:00 2001 From: Nick Budak Date: Thu, 12 Sep 2024 15:38:00 -0700 Subject: [PATCH] Only add margin to consecutive paragraphs --- app/assets/stylesheets/earthworks.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/app/assets/stylesheets/earthworks.css b/app/assets/stylesheets/earthworks.css index 0afeab75..cc2482fb 100644 --- a/app/assets/stylesheets/earthworks.css +++ b/app/assets/stylesheets/earthworks.css @@ -365,3 +365,12 @@ body { #main-container { flex: 1; } + +/* Add margin for consecutive paragraphs in item descriptions */ +.document-metadata p { + margin-bottom: 0; +} + +.document-metadata p + p { + margin-top: 1rem; +}