From e678ee031d953c3569017867ac91d44493f81fa7 Mon Sep 17 00:00:00 2001 From: Evan Hahn <69474926+EvanHahn-Signal@users.noreply.github.com> Date: Wed, 25 Nov 2020 12:20:08 -0600 Subject: [PATCH] Center local video in calling lobby --- stylesheets/_modules.scss | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/stylesheets/_modules.scss b/stylesheets/_modules.scss index f930bcddd2..7be6a04002 100644 --- a/stylesheets/_modules.scss +++ b/stylesheets/_modules.scss @@ -6468,9 +6468,10 @@ button.module-image__border-overlay:focus { &__video { @include font-body-2; - background-color: $color-gray-80; border-radius: 8px; color: $color-white; + display: flex; + flex-direction: column; flex: 1 1 auto; margin-bottom: 24px; margin-top: 24px; @@ -6482,7 +6483,11 @@ button.module-image__border-overlay:focus { &__video-on { &__video { + display: block; + flex-grow: 1; transform: rotateY(180deg); + width: 100%; + background-color: $color-gray-80; } }