Skip to content

Commit 849bcf5

Browse files
committed
style: update the mic icon and camera off text
1 parent 0fda74b commit 849bcf5

File tree

3 files changed

+6
-21
lines changed

3 files changed

+6
-21
lines changed

package-lock.json

Lines changed: 0 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/App.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,14 +290,14 @@
290290
flex-direction: column !important;
291291
justify-content: center !important;
292292
gap: 8px !important;
293-
padding: 0 16px !important;
294293
}
295294

296295
.vp-chat-input-container {
297296
height: 40px !important;
298297
display: flex !important;
299298
flex-direction: row !important;
300299
align-items: center !important;
300+
margin: 0 16px !important;
301301
padding-left: 16px !important;
302302
border: 1px solid #ffffff !important;
303303
border-radius: 16px !important;
@@ -320,6 +320,8 @@
320320
}
321321

322322
.vp-chat-camera-off {
323+
padding: 8px !important;
324+
background: #000000 !important;
323325
text-align: center !important;
324326
color: rgba(255, 255, 255, 0.5) !important;
325327
font-size: 14px !important;

src/components/RoomScreen.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -321,11 +321,11 @@ function RoomContainer({ roomName, onLeave }) {
321321
}}
322322
>
323323
{message.trim() ? (
324-
<SendHorizonal size={20} color="white" />
324+
<SendHorizonal size={28} color="white" />
325325
) : isMuted ? (
326-
<Mic size={20} color="white" />
326+
<MicOff size={28} color="white" />
327327
) : (
328-
<MicOff size={20} color="white" />
328+
<Mic size={28} color="white" />
329329
)}
330330
</div>
331331
</div>

0 commit comments

Comments
 (0)