Skip to content

Commit

Permalink
Reinstate margin between tables (#1192)
Browse files Browse the repository at this point in the history
  • Loading branch information
richvdh committed Aug 2, 2022
1 parent 737260e commit b58c7a5
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions assets/scss/custom.scss
Expand Up @@ -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;
Expand All @@ -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;
Expand Down

0 comments on commit b58c7a5

Please sign in to comment.