Add avatar when muted in lobby

This commit is contained in:
Robert Long
2022-01-21 11:55:10 -08:00
parent 6da369f3fe
commit d1368f4622
2 changed files with 34 additions and 2 deletions

View File

@@ -57,11 +57,24 @@ limitations under the License.
}
.preview video {
width: 100%;
width: calc(100% + 1px);
height: 100%;
object-fit: contain;
background-color: black;
transform: scaleX(-1);
/* transform scale doesn't perfectly match width, so make -1.01 border issues */
transform: scaleX(-1.01);
}
.avatarContainer {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 66px;
display: flex;
justify-content: center;
align-items: center;
background-color: var(--bgColor3);
}
.webcamPermissions {