@@ -74,11 +74,18 @@ body { | |||
} | |||
.video-container video { | |||
background-color: lightsteelblue; | |||
object-fit: cover; | |||
height: 100%; | |||
width: 100%; | |||
} | |||
.video-container.square video { | |||
object-fit: cover; | |||
.video-container:not(.square) { | |||
width: unset !important; | |||
overflow: scroll; | |||
} | |||
.video-container:not(.square) video { | |||
object-fit: unset; | |||
height: unset; | |||
width: unset; | |||
} | |||
.video-container.mirror video { | |||
transform: scaleX(-1); |