From 309fcf967213d17f08df7975657089551aaf680b Mon Sep 17 00:00:00 2001 From: virtuacoplenny Date: Tue, 20 Mar 2018 12:28:09 -0700 Subject: [PATCH] fix(filmstrip): fix local video alignment with no invite button (#2629) Hardcoding an offset from the bottom of 32px causes issues in horizontal filmstrip when there is no invite button, because then the local video just displays 32px from the bottom as there is no button to take up space above it. Instead leverage flex alignments to align the bottom of the video to the bototm of the filmstrip. --- css/_filmstrip.scss | 2 +- css/_vertical_filmstrip_overrides.scss | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/css/_filmstrip.scss b/css/_filmstrip.scss index f10326dc6..908e1946c 100644 --- a/css/_filmstrip.scss +++ b/css/_filmstrip.scss @@ -64,7 +64,7 @@ * The local video identifier. */ &#filmstripLocalVideo { - bottom: 32px; + align-self: flex-end; display: block; /** diff --git a/css/_vertical_filmstrip_overrides.scss b/css/_vertical_filmstrip_overrides.scss index bae6dd287..cde25fcbf 100644 --- a/css/_vertical_filmstrip_overrides.scss +++ b/css/_vertical_filmstrip_overrides.scss @@ -72,6 +72,7 @@ * vertical filmstrip layout. */ #filmstripLocalVideo { + align-self: initial; bottom: 5px; display: flex; flex-direction: column-reverse;