From 59ff94350a48d4ce946e10eafdedbd314be8b42c Mon Sep 17 00:00:00 2001 From: Jake Herrmann Date: Fri, 23 Feb 2024 11:18:39 -0900 Subject: [PATCH] set tables to max width --- src/asf_theme/assets/stylesheets/asf.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/asf_theme/assets/stylesheets/asf.css b/src/asf_theme/assets/stylesheets/asf.css index 59a3649..73d6021 100644 --- a/src/asf_theme/assets/stylesheets/asf.css +++ b/src/asf_theme/assets/stylesheets/asf.css @@ -6,6 +6,17 @@ a { color: #236192; } +/* +Set tables to max width: +https://github.com/squidfunk/mkdocs-material/issues/175#issuecomment-616694465 +*/ +.md-typeset__table { + min-width: 100%; +} +.md-typeset table:not([class]) { + display: table; +} + .md-header a, .md-footer a { color: rgba(248, 248, 248, 100); }