From eb69fe37bfc049b92f1604437f72165824df1ffd Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Sun, 9 Jul 2023 22:39:07 -0400 Subject: [PATCH] Render full-width tables in rules reference (#5636) --- docs/stylesheets/extra.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index cc60cb1295..2fca5ce9e6 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -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; +}