Remove preview screen title
This commit is contained in:
parent
3157cf65ef
commit
b6ee7cfefc
2 changed files with 3 additions and 4 deletions
|
@ -301,8 +301,8 @@ function RoomSetupView({
|
|||
</Header>
|
||||
<div className={styles.joinRoom}>
|
||||
<div className={styles.joinRoomContent}>
|
||||
<h1>{roomName}</h1>
|
||||
<div className={styles.preview}>
|
||||
<video ref={videoRef} muted playsInline disablePictureInPicture />
|
||||
{state === GroupCallState.LocalCallFeedUninitialized && (
|
||||
<p className={styles.webcamPermissions}>
|
||||
Webcam/microphone permissions needed to join the call.
|
||||
|
@ -313,7 +313,6 @@ function RoomSetupView({
|
|||
Accept webcam/microphone permissions to join the call.
|
||||
</p>
|
||||
)}
|
||||
<video ref={videoRef} muted playsInline disablePictureInPicture />
|
||||
{state === GroupCallState.LocalCallFeedInitialized && (
|
||||
<>
|
||||
<Button
|
||||
|
|
|
@ -63,8 +63,8 @@ limitations under the License.
|
|||
|
||||
.preview {
|
||||
position: relative;
|
||||
max-width: 816px;
|
||||
max-height: 75vh;
|
||||
min-height: 280px;
|
||||
height: 50vh;
|
||||
border-radius: 24px;
|
||||
overflow: hidden;
|
||||
background-color: var(--bgColor3);
|
||||
|
|
Loading…
Add table
Reference in a new issue