Fix TheSurahStream on low-height devices

This commit is contained in:
0x1eef 2023-03-08 00:48:57 -03:00
parent 414ef6f703
commit 2e937c2a2a

View file

@ -70,12 +70,12 @@ body .root .content ul.body {
/* Height of 625px, or less */ /* Height of 625px, or less */
@media screen and (max-height: 625px) { @media screen and (max-height: 625px) {
height: 350px; height: 330px;
} }
/* Height of 595px, or less */ /* Height of 595px, or less */
@media screen and (max-height: 595px) { @media screen and (max-height: 595px) {
height: 330px; height: 310px;
} }
} }