More useful combined mode for small mobile display

This commit is contained in:
Konstantin 2020-09-18 03:15:08 +04:00 committed by GitHub
parent 25260b213c
commit ed733b6992
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

View File

@ -420,3 +420,13 @@ input[type=text] {
.video-only #videoElement {
height: 99vh;
}
/* ---------------------- */
/* COMBINED MODE (MOBILE) */
/* ---------------------- */
@media screen and (max-width: 768px) {
.combined {
grid-template-columns: 1fr;
grid-template-rows: 50vw 1fr;
}
}