Skip to content

Commit e4ae200

Browse files
authored
fix(ui): ensure proper alignment of output stream video (#71)
This commit ensures that the output video stream element takes the full height of its parent div, improving layout consistency and visual alignment.
1 parent 450cf40 commit e4ae200

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/components/room.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function MediaStreamPlayer({ stream }: MediaStreamPlayerProps) {
7070
ref={videoRef}
7171
autoPlay
7272
playsInline
73-
className="w-full h-full"
73+
className="w-full h-full object-cover"
7474
/>
7575
{needsPlayButton && (
7676
<div className="absolute inset-0 flex items-center justify-center bg-black/50">

0 commit comments

Comments
 (0)