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

@ -1086,10 +1086,6 @@ video {
height: 0px;
}
.h-40 {
height: 10rem;
}
.h-64 {
height: 16rem;
}
@ -2672,10 +2668,6 @@ input {
height: 3rem;
}
.md\:max-h-65vh {
max-height: 65vh;
}
.md\:w-2\/6 {
width: 33.333333%;
}
@ -2789,3 +2781,4 @@ input {
display: inline;
}
}

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 {