From 40df5f97d42054dbdf31c97dfd4f4b08c03a391f Mon Sep 17 00:00:00 2001 From: Leonard Kim Date: Mon, 4 Dec 2017 14:44:45 -0800 Subject: [PATCH] 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... --- css/_vertical_filmstrip_overrides.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/css/_vertical_filmstrip_overrides.scss b/css/_vertical_filmstrip_overrides.scss index 8bb7a3c7f..6778a14c7 100644 --- a/css/_vertical_filmstrip_overrides.scss +++ b/css/_vertical_filmstrip_overrides.scss @@ -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; } }