Improve table styling in extra.css (#100)

Added vertical alignment for table cells and set table width and layout to auto for better display of tables in the documentation.
This commit is contained in:
Ian Bassi
2026-01-09 12:31:57 -03:00
committed by GitHub
parent cf20f042bf
commit 625672d359

View File

@@ -283,6 +283,12 @@ h1 + ol, h2 + ol, h3 + ol, h4 + ol{
/* Slighly reduce table cell height */
.md-typeset table:not([class]) td {
padding: .75em 1.25em;
vertical-align: middle;
}
.md-typeset table:not([class]) {
width: auto;
table-layout: auto;
}
/* Vertical align table cells so icons sit in the middle */