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.
pull/647/head
Ben Busby 2 years ago
parent 63301efb28
commit b393e68d1d
No known key found for this signature in database
GPG Key ID: B9B7231E01D924A1

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

Loading…
Cancel
Save