fix(vertical-filmstrip): no scrollbars on Firefox from single thumbnail

Something is causing firefox to show scrollbars on the remote videos
container even though there is plenty of room. I lost this battle
and just made the container taller...
This commit is contained in:
Leonard Kim 2017-12-04 14:44:45 -08:00 committed by yanas
parent aa93a78372
commit 40df5f97d4
1 changed files with 5 additions and 0 deletions

View File

@ -100,6 +100,11 @@
#filmstripRemoteVideosContainer {
flex-direction: column-reverse;
/**
* Add padding as a hack for Firefox not to show scrollbars when
* unnecessary.
*/
padding: 1px 0;
overflow-x: hidden;
}
}