From 8ada06cfe370459179b9dd74fd622dc87190d09f Mon Sep 17 00:00:00 2001 From: Leonard Kim Date: Thu, 4 May 2017 11:38:51 -0700 Subject: [PATCH] fix(filmstrip): Set avatar container height within inlay In the filmstrip inlay, the avatar container holds the avatar image. The image is set to 100% height, so it displays entirely in the container. However, this does not adjust the horizontal space created by the image in firefox, leaving whitespace to the right of the avatar. The fix is to set the container height to 100% so that all its content will fit inside, automatically adjusting the space created by the image width. --- css/_inlay.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/css/_inlay.scss b/css/_inlay.scss index 7960bb89b..6748f8e87 100644 --- a/css/_inlay.scss +++ b/css/_inlay.scss @@ -93,6 +93,7 @@ } &__avatar-container { + height: 100%; position: relative; > img { height: 100%;