From cf8d6bba09bd5491006edd4d8960370c879e1aa1 Mon Sep 17 00:00:00 2001 From: Vivek Bhojawala Date: Tue, 10 Nov 2020 10:18:12 +0530 Subject: [PATCH] CSS Changes to adjust content width as per screen size and responsive table with multiline td. --- docs/static/exampleinclude.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/static/exampleinclude.css b/docs/static/exampleinclude.css index b4f2a42dcc7f62..cb478fcd302bf8 100644 --- a/docs/static/exampleinclude.css +++ b/docs/static/exampleinclude.css @@ -84,3 +84,15 @@ color: #404040; background-color: #d6d6d6; } + +/* override the maximum width restriction for large screen */ +.wy-nav-content { + max-width: none; +} + +/* override table width restrictions */ +@media screen and (min-width: 720px) { + .wy-table-responsive table td { + white-space: normal !important; + } +}