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 21:12:57 -06:00
committed by yanas
parent aa93a78372
commit 40df5f97d4
+5
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;
}
}