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

View File

@@ -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;
}