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:
parent
2eafbacdd4
commit
309fcf9672
|
@ -64,7 +64,7 @@
|
|||
* The local video identifier.
|
||||
*/
|
||||
&#filmstripLocalVideo {
|
||||
bottom: 32px;
|
||||
align-self: flex-end;
|
||||
display: block;
|
||||
|
||||
/**
|
||||
|
|
|
@ -72,6 +72,7 @@
|
|||
* vertical filmstrip layout.
|
||||
*/
|
||||
#filmstripLocalVideo {
|
||||
align-self: initial;
|
||||
bottom: 5px;
|
||||
display: flex;
|
||||
flex-direction: column-reverse;
|
||||
|
|
Loading…
Reference in New Issue