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>
|
</Header>
|
||||||
<div className={styles.joinRoom}>
|
<div className={styles.joinRoom}>
|
||||||
<div className={styles.joinRoomContent}>
|
<div className={styles.joinRoomContent}>
|
||||||
<h1>{roomName}</h1>
|
|
||||||
<div className={styles.preview}>
|
<div className={styles.preview}>
|
||||||
|
<video ref={videoRef} muted playsInline disablePictureInPicture />
|
||||||
{state === GroupCallState.LocalCallFeedUninitialized && (
|
{state === GroupCallState.LocalCallFeedUninitialized && (
|
||||||
<p className={styles.webcamPermissions}>
|
<p className={styles.webcamPermissions}>
|
||||||
Webcam/microphone permissions needed to join the call.
|
Webcam/microphone permissions needed to join the call.
|
||||||
|
@ -313,7 +313,6 @@ function RoomSetupView({
|
||||||
Accept webcam/microphone permissions to join the call.
|
Accept webcam/microphone permissions to join the call.
|
||||||
</p>
|
</p>
|
||||||
)}
|
)}
|
||||||
<video ref={videoRef} muted playsInline disablePictureInPicture />
|
|
||||||
{state === GroupCallState.LocalCallFeedInitialized && (
|
{state === GroupCallState.LocalCallFeedInitialized && (
|
||||||
<>
|
<>
|
||||||
<Button
|
<Button
|
||||||
|
|
|
@ -63,8 +63,8 @@ limitations under the License.
|
||||||
|
|
||||||
.preview {
|
.preview {
|
||||||
position: relative;
|
position: relative;
|
||||||
max-width: 816px;
|
min-height: 280px;
|
||||||
max-height: 75vh;
|
height: 50vh;
|
||||||
border-radius: 24px;
|
border-radius: 24px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background-color: var(--bgColor3);
|
background-color: var(--bgColor3);
|
||||||
|
|
Loading…
Add table
Reference in a new issue