hacks and fixes

This commit is contained in:
Ginger Wong
2020-06-15 00:15:23 -07:00
parent f864e57340
commit cef9bc7adb
3 changed files with 57 additions and 0 deletions

View File

@@ -277,6 +277,7 @@ header h1 {
#main-content-container {
flex-direction: column;
justify-content: space-between;
height: calc((var(--vh, 1vh) * 100) - var(--header-height));
}
.main-cols {
@@ -319,4 +320,43 @@ header h1 {
.no-chat #user-content {
display: block;
}
}
.android-message-focus #main-content-container {
flex-direction: column;
justify-content: space-between;
height: calc((var(--vh, 1vh) * 100) - var(--header-height));
}
.android-message-focus .main-cols {
width: 100vw;
}
.android-message-focus .left-col {
flex-direction: column;
justify-content: stretch;
z-index: 100;
}
.android-message-focus .right-col {
overflow: hidden;
}
.android-message-focus #user-info {
width: 9em;
}
.android-message-focus #user-content {
display: none;
}
.android-message-focus #chat-container {
width: 100%;
height: 100%;
position: relative;
height: auto;
}
.android-message-focus .owncast-video-container {
height: 40vh;
height: calc((var(--vh, 1vh) * 40));
min-height: 300px;
}