diff options
Diffstat (limited to 'themes')
-rw-r--r-- | themes/blueview/style.css | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/themes/blueview/style.css b/themes/blueview/style.css index af1434574..7b3382c35 100644 --- a/themes/blueview/style.css +++ b/themes/blueview/style.css @@ -279,3 +279,26 @@ body { } +/* lose the border on mobile */ +@media (max-width: 600px) { + body { + padding: 0; + } + .page { + border: none; + margin: 0; + } + #pagebody { + margin: auto; + border: none; + } +} + +/* cancel the minimum width if it would mean scrollbars */ +@media (max-width: 850px) { + .page { + width: auto; + min-width: 0; + padding: 0; + } +} |