doc: Fix table bottom margin

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 <paul.wicking@qt.io>
This commit is contained in:
Tor Arne Vestbø 2020-10-14 17:57:20 +02:00
parent bfc6e2d69d
commit 35e4740385

View File

@ -558,7 +558,6 @@ blockquote:before,blockquote:after,q:before,q:after {
table { table {
border-collapse:collapse; border-collapse:collapse;
border-spacing:0; border-spacing:0;
margin-bottom:5px;
width:100% width:100%
} }
a { a {
@ -937,7 +936,8 @@ div.main_index .row:after {
background-color:#f3f3f4 background-color:#f3f3f4
} }
div.table { div.table {
overflow-x:auto overflow-x:auto;
margin-bottom:1.5em;
} }
.context tr > td > pre { .context tr > td > pre {
font-size:0.75em font-size:0.75em