From 1d40832e5f7cdab405e67f6b2d63a461479169e6 Mon Sep 17 00:00:00 2001 From: Adam Porter Date: Thu, 7 Dec 2023 14:29:21 -0600 Subject: [PATCH] Fix: Tabs' contents' top margin Before this change, the images in the div.grid-container were displayed about one line higher than the text in the adjacent paragraph. --- assets/css/tabs.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/assets/css/tabs.scss b/assets/css/tabs.scss index 59c62d4b52d..be95428599a 100644 --- a/assets/css/tabs.scss +++ b/assets/css/tabs.scss @@ -20,6 +20,14 @@ table td, table th { & .tabs div li { display: inline; + + & .grid-container { + margin-top: 1em; + + & p { + margin-top: 0em; + } + } } }