diff options
-rw-r--r-- | docs/style.css | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/style.css b/docs/style.css index 5ec9203..9c0a887 100644 --- a/docs/style.css +++ b/docs/style.css @@ -9,3 +9,19 @@ div.wy-side-nav-search { padding: unset; margin: unset; } + +/* +Wide tables are wide. +Default is 800px, which is a waste of screen space. +*/ +div.wy-nav-content { + max-width: unset; +} + +.wy-table-responsive table td,.wy-table-responsive table th { + /* + The theme sets it to "nowrap", which means tables become + ultra-wide with horizontal scrollbars. Ugh. + */ + white-space:unset; +} |