Browse Source

Merge pull request #350 from nextcloud/fix-mobile-portrait

Limit size of own video on mobile so other participant is still visible
pull/386/head
Jan-Christoph Borchardt 8 years ago
committed by GitHub
parent
commit
1258726c45
  1. 6
      css/style.css

6
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;

Loading…
Cancel
Save