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
parent
63301efb28
commit
b393e68d1d
|
@ -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…
Reference in New Issue