Skip to content

Commit

Permalink
fix(ui): ensure proper alignment of output stream video (yondonfu#71)
Browse files Browse the repository at this point in the history
This commit ensures that the output video stream element takes the full height
of its parent div, improving layout consistency and visual alignment.
  • Loading branch information
rickstaa authored Feb 19, 2025
1 parent 450cf40 commit e4ae200
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/room.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function MediaStreamPlayer({ stream }: MediaStreamPlayerProps) {
ref={videoRef}
autoPlay
playsInline
className="w-full h-full"
className="w-full h-full object-cover"
/>
{needsPlayButton && (
<div className="absolute inset-0 flex items-center justify-center bg-black/50">
Expand Down

0 comments on commit e4ae200

Please sign in to comment.