Render full-width tables in rules reference (#5636)

This commit is contained in:
Charlie Marsh
2023-07-09 22:39:07 -04:00
committed by GitHub
parent 27011448ea
commit eb69fe37bf

View File

@@ -84,3 +84,11 @@
[data-md-color-scheme="astral-dark"] img[src$="#gh-dark-mode-only"] {
display: inline; /* Show dark images in dark mode */
}
/* See: https://github.com/squidfunk/mkdocs-material/issues/175#issuecomment-616694465 */
.md-typeset__table {
min-width: 100%;
}
.md-typeset table:not([class]) {
display: table;
}