From c46ebebbb34d66f03b417a52e3e30e7ea524efaa Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 22 Nov 2020 09:13:38 +0530 Subject: [PATCH] Override the min-width for body from the alabaster theme For some reason it sets min width to 450px which is too wide for some mobile screens. Fixes #3116 --- docs/_static/custom.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/_static/custom.css b/docs/_static/custom.css index d93818df9..057d6fad2 100644 --- a/docs/_static/custom.css +++ b/docs/_static/custom.css @@ -21,6 +21,10 @@ div.body p, div.body dd, div.body li, div.body blockquote { text-align: justify; } +div.body { + min-width: 200px; +} + pre { white-space: pre-wrap; }