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

View file

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