fix video elements not respecting parent height in callview grid

This commit is contained in:
Bruno Windels 2022-06-14 12:24:38 +02:00
parent 595a15c533
commit d4ee19c4e4
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,6 @@ limitations under the License.
border-radius: 8px;
overflow: hidden;
background-color: black;
display: block;
}
.StreamView > * {
@ -51,6 +50,7 @@ limitations under the License.
.StreamView video {
width: 100%;
height: 100%;
min-height: 0;
object-fit: contain;
}