Browse Source

Merge pull request #814 from BeatC/fix-video-preview-when-resize

Fix problem with last video preview
master
yanas 8 years ago
parent
commit
238e1f1bea
1 changed files with 9 additions and 3 deletions
  1. 9
    3
      css/videolayout_default.css

+ 9
- 3
css/videolayout_default.css View File

@@ -8,7 +8,15 @@
8 8
 }
9 9
 
10 10
 #remoteVideos {
11
-    display:block;
11
+    display: -webkit-box;
12
+    display: -moz-box;
13
+    display: -ms-flexbox;
14
+    display: -webkit-flex;
15
+    display: flex;
16
+    flex-direction: row;
17
+    flex-wrap: nowrap;
18
+    justify-content: flex-end;
19
+
12 20
     position:absolute;
13 21
     text-align:right;
14 22
     height:196px;
@@ -30,8 +38,6 @@
30 38
 
31 39
 .videocontainer {
32 40
     position: relative;
33
-    margin-left: auto;
34
-    margin-right: auto;
35 41
     text-align: center;
36 42
 }
37 43
 

Loading…
Cancel
Save