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

@ -3,4 +3,8 @@
background-color: var(--theme-color-components-video-status-bar-background);
display: flex;
flex-direction: column;
:global(#player) {
height: calc(100vh - var(--status-bar-height));
}
}