forked from MapComplete/MapComplete
Toggle fullscreen overlay on small screen heights, workaround/fix for #877
This commit is contained in:
parent
b5c48f65b0
commit
94475e4d4d
7 changed files with 14 additions and 21 deletions
|
@ -2,11 +2,16 @@
|
|||
Contains tweaks for small screens
|
||||
*/
|
||||
|
||||
@media only screen and (min-width: 769px) {
|
||||
@media only screen and (min-width: 769px) and (min-height: 700px) {
|
||||
|
||||
.only-on-mobile {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.desktop\:max-h-65vh {
|
||||
max-height: 65vh;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
@ -32,7 +37,7 @@ Contains tweaks for small screens
|
|||
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 768px), only screen and (max-height: 768px) {
|
||||
@media only screen and (max-width: 768px), only screen and (max-height: 700px) {
|
||||
|
||||
|
||||
.hidden-on-mobile {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue