Skip to content

Commit

Permalink
doc: Fix table bottom margin
Browse files Browse the repository at this point in the history
It was way too small, and should match the margins
for other content such as paragraphs, so that an
inline table in between two paragraphs has a balanced
spacing.

Change-Id: I2adb434ac7773e9796199f40d5318368ca380aca
Reviewed-by: Paul Wicking <[email protected]>
  • Loading branch information
torarnv committed Oct 22, 2020
1 parent bfc6e2d commit 35e4740
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/global/template/style/online.css
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,6 @@ blockquote:before,blockquote:after,q:before,q:after {
table {
border-collapse:collapse;
border-spacing:0;
margin-bottom:5px;
width:100%
}
a {
Expand Down Expand Up @@ -937,7 +936,8 @@ div.main_index .row:after {
background-color:#f3f3f4
}
div.table {
overflow-x:auto
overflow-x:auto;
margin-bottom:1.5em;
}
.context tr > td > pre {
font-size:0.75em
Expand Down

0 comments on commit 35e4740

Please sign in to comment.