From b58c7a583969dbd5b24f5644f012b1dd7c0ece7d Mon Sep 17 00:00:00 2001 From: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> Date: Tue, 2 Aug 2022 23:47:57 +0100 Subject: [PATCH] Reinstate margin between tables (#1192) --- assets/scss/custom.scss | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/assets/scss/custom.scss b/assets/scss/custom.scss index 7c8432b9..898b9808 100644 --- a/assets/scss/custom.scss +++ b/assets/scss/custom.scss @@ -313,10 +313,6 @@ footer { margin: 1.5rem 0 .75rem 0; } - h2 + table, h3 + table, h3 + div.highlight { - margin-top: 0; - } - hr { border-bottom: 2px solid $dark; margin-bottom: 1.5rem; @@ -330,6 +326,11 @@ footer { table-layout: fixed; width: 100%; + // add some space between two tables when they are right next to each other + & + table { + margin-top: 4rem; + } + caption { caption-side: top; color: $dark;