From 3c429be3cb8f2024489cb881bb7946be7f409551 Mon Sep 17 00:00:00 2001 From: Nick Goncharenko Date: Fri, 24 Jun 2022 12:52:55 -0700 Subject: [PATCH] docs: add table overflow handling for nested sections --- docs/source/_static/css/custom.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/source/_static/css/custom.css b/docs/source/_static/css/custom.css index 1576af0ebc41..5423834cb784 100644 --- a/docs/source/_static/css/custom.css +++ b/docs/source/_static/css/custom.css @@ -59,7 +59,12 @@ a:visited } section { - overflow: auto; + overflow-x: auto; +} + +section table { + overflow-x: auto; + display: block; }