Fix problem with last video preview

This commit is contained in:
Ilya Daynatovich 2016-08-29 16:39:57 +03:00
parent 49cc4ae087
commit ba822eaeed
1 changed files with 9 additions and 3 deletions

View File

@ -8,7 +8,15 @@
} }
#remoteVideos { #remoteVideos {
display:block; display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-end;
position:absolute; position:absolute;
text-align:right; text-align:right;
height:196px; height:196px;
@ -30,8 +38,6 @@
.videocontainer { .videocontainer {
position: relative; position: relative;
margin-left: auto;
margin-right: auto;
text-align: center; text-align: center;
} }