Merge branch 'main' into organize-colors

This commit is contained in:
Robin Townsend
2022-06-06 09:03:40 -04:00
11 changed files with 141 additions and 79 deletions

View File

@@ -50,13 +50,13 @@ export function VideoPreview({
<div className={styles.preview} ref={previewRef}>
<video ref={videoRef} muted playsInline disablePictureInPicture />
{state === GroupCallState.LocalCallFeedUninitialized && (
<Body fontWeight="semiBold" className={styles.webcamPermissions}>
Webcam/microphone permissions needed to join the call.
<Body fontWeight="semiBold" className={styles.cameraPermissions}>
Camera/microphone permissions needed to join the call.
</Body>
)}
{state === GroupCallState.InitializingLocalCallFeed && (
<Body fontWeight="semiBold" className={styles.webcamPermissions}>
Accept webcam/microphone permissions to join the call.
<Body fontWeight="semiBold" className={styles.cameraPermissions}>
Accept camera/microphone permissions to join the call.
</Body>
)}
{state === GroupCallState.LocalCallFeedInitialized && (

View File

@@ -29,7 +29,7 @@
background-color: var(--bgColor3);
}
.webcamPermissions {
.cameraPermissions {
position: absolute;
top: 50%;
left: 50%;