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.
This commit is contained in:
virtuacoplenny 2018-03-20 12:28:09 -07:00 committed by bbaldino
parent 2eafbacdd4
commit 309fcf9672
2 changed files with 2 additions and 1 deletions

View File

@ -64,7 +64,7 @@
* The local video identifier.
*/
&#filmstripLocalVideo {
bottom: 32px;
align-self: flex-end;
display: block;
/**

View File

@ -72,6 +72,7 @@
* vertical filmstrip layout.
*/
#filmstripLocalVideo {
align-self: initial;
bottom: 5px;
display: flex;
flex-direction: column-reverse;