oooh was using ineffective media queries for desktop
This commit is contained in:
parent
4c68fd90ca
commit
98e2de68da
2 changed files with 4 additions and 4 deletions
BIN
app/assets/images/.DS_Store
vendored
BIN
app/assets/images/.DS_Store
vendored
Binary file not shown.
|
@ -2,25 +2,25 @@
|
|||
display: none;
|
||||
}
|
||||
|
||||
@media only screen and (max-device-width : 720px) and (min-device-width : 504px) {
|
||||
@media only screen and (max-width : 720px) and (min-width : 504px) {
|
||||
.sidebarSearch .tt-hint, .sidebarSearch .sidebarSearchField {
|
||||
width: 160px !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-device-width : 390px) {
|
||||
@media only screen and (max-width : 390px) {
|
||||
.map .mapCard .mobileMetadata {
|
||||
width: 190px;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-device-width : 390px) {
|
||||
@media only screen and (min-width : 390px) {
|
||||
.map .mapCard .mobileMetadata {
|
||||
width: 390px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Smartphones (portrait and landscape) ----------- the minimum space that two map cards can fit side by side */
|
||||
@media only screen and (max-device-width : 504px) {
|
||||
@media only screen and (max-width : 504px) {
|
||||
.upperLeftUI, .upperRightUI, .openCheatsheet, .mapInfoIcon, .feedback-icon, .chat-box, #exploreMapsHeader {
|
||||
display: none !important;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue