Merge pull request #139 from koloml/master

Mobile styling for combined mode
This commit is contained in:
Nick 2020-10-19 18:37:51 -04:00 committed by GitHub
commit 932e0ed370
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions

View File

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