From 6deff7e674a63ba770e056461a613cc51e3250bd Mon Sep 17 00:00:00 2001 From: Evan Anderson Date: Fri, 25 Jun 2021 19:16:21 +0800 Subject: [PATCH] Widen center content area per slack discussion (#3848) --- docs/stylesheets/extra.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index f0ae8ccaf..bdeff74d4 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -73,3 +73,10 @@ .md-typeset table code { word-break: normal; } + +/* Widen the main column a bit to help with wide tables. + Note that extra-wide columns can make it hard to read prose, + so there is a tradeoff here. */ +.md-grid { + max-width: 68rem; +}