Skip to content

Commit b12ca1b

Browse files
Update
1 parent e542a17 commit b12ca1b

File tree

2 files changed

+4
-22
lines changed

2 files changed

+4
-22
lines changed

src/styles/components/VideoConference.css

Lines changed: 3 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,15 @@
1-
.video-conference-container{
2-
position: fixed;
3-
right: 0px;
4-
bottom: 0px;
5-
width: 300px;
6-
height: 450px;
7-
background: #f0f8ff; /* Light blue tint background */
8-
border-radius: 10px;
9-
box-shadow: 0 6px 12px rgba(0, 83, 255, 0.15);
10-
overflow: hidden;
11-
z-index: 20;
12-
border: 0px solid #0055ff;
13-
transition: all 0.3s ease;
14-
object-fit: contain;
15-
}
16-
171
.video-conference {
182
position: fixed;
19-
right: 0px;
20-
bottom: 0px;
3+
right: 20px;
4+
bottom: 80px;
215
width: 300px;
22-
height: 450px;
236
background: #f0f8ff; /* Light blue tint background */
247
border-radius: 10px;
258
box-shadow: 0 6px 12px rgba(0, 83, 255, 0.15);
269
overflow: hidden;
2710
z-index: 20;
28-
border: 0px solid #0055ff;
11+
border: 2px solid #0055ff;
2912
transition: all 0.3s ease;
30-
object-fit: contain;
3113
}
3214

3315
.video-conference:hover {

src/utils/peerService.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export const createPeer = () => {
55
return new Peer(uuidv4(), {
66
host: 'peerjs.com',
77
port: 443,
8-
path: '/',
8+
path: '/peerjs',
99
secure: true
1010
});
1111
};

0 commit comments

Comments
 (0)