Fix incorrect min-width for mobile screen sizes

min-width was previously set to 736px for all screen sizes, which forced
content off screen for smaller devices such as mobile phones. This
modifies the search stylesheet to only apply a min-width style to
devices > 800px wide.
main
Ben Busby 2022-02-01 20:36:53 -07:00
parent 63301efb28
commit b393e68d1d
No known key found for this signature in database
GPG Key ID: B9B7231E01D924A1
1 changed files with 10 additions and 1 deletions

View File

@ -1,7 +1,10 @@
body { body {
display: block !important; display: block !important;
margin: auto !important; margin: auto !important;
min-width: 736px !important; }
.vvjwJb {
font-size: 16px !important;
} }
.autocomplete { .autocomplete {
@ -49,3 +52,9 @@ details summary span {
.ip-text-div { .ip-text-div {
padding-top: 0 !important; padding-top: 0 !important;
} }
@media (min-width: 801px) {
body {
min-width: 736px !important;
}
}