Toggle fullscreen overlay on small screen heights, workaround/fix for #877

This commit is contained in:
Pieter Vander Vennet 2022-06-29 19:14:57 +02:00
parent b5c48f65b0
commit 94475e4d4d
7 changed files with 14 additions and 21 deletions

View file

@ -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 {