Browse Source

Fix problem with last video preview

j8
Ilya Daynatovich 9 years ago
parent
commit
ba822eaeed
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
 }
8
 }
9
 
9
 
10
 #remoteVideos {
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
     position:absolute;
20
     position:absolute;
13
     text-align:right;
21
     text-align:right;
14
     height:196px;
22
     height:196px;
30
 
38
 
31
 .videocontainer {
39
 .videocontainer {
32
     position: relative;
40
     position: relative;
33
-    margin-left: auto;
34
-    margin-right: auto;
35
     text-align: center;
41
     text-align: center;
36
 }
42
 }
37
 
43
 

Loading…
Cancel
Save