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
This commit is contained in:
Kovid Goyal 2020-11-22 09:13:38 +05:30
parent ff96036f62
commit c46ebebbb3
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -21,6 +21,10 @@ div.body p, div.body dd, div.body li, div.body blockquote {
text-align: justify; text-align: justify;
} }
div.body {
min-width: 200px;
}
pre { pre {
white-space: pre-wrap; white-space: pre-wrap;
} }