fix(web): make video embed player fit entire window. Closes #3587

This commit is contained in:
Gabe Kangas 2024-02-21 20:41:25 -08:00
parent c58240ce53
commit 82d0b9c121
No known key found for this signature in database
GPG key ID: 4345B2060657F330

View file

@ -1,6 +1,10 @@
.onlineContainer { .onlineContainer {
height: 100vh; height: 100vh;
background-color: var(--theme-color-components-video-status-bar-background); background-color: var(--theme-color-components-video-status-bar-background);
display: flex; display: flex;
flex-direction: column; flex-direction: column;
:global(#player) {
height: calc(100vh - var(--status-bar-height));
}
} }