From b421c1529134424ba4549fcf43b14b4fa4076f2e Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 6 Jul 2017 16:14:15 +0200 Subject: [PATCH] Limit size of own video on mobile so other participant is still visible Signed-off-by: Jan-Christoph Borchardt --- css/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/css/style.css b/css/style.css index 3b2e81413..4e528b7fe 100644 --- a/css/style.css +++ b/css/style.css @@ -322,6 +322,12 @@ video { left: initial; z-index: 10; } +@media only screen and (max-width: 768px) { + .participants-1 .videoView, + .participants-2 .videoView { + max-height: 35%; + } +} .participants-1 .videoView video, .participants-2 .videoView video { position: absolute;