(feat): add ability to hide users in focused call view
All checks were successful
/ deploy (push) Successful in 15m0s
All checks were successful
/ deploy (push) Successful in 15m0s
(feat): add small avatars with tooltips instead of usernames in the top bar in calls (fix): a lot of layout issues (qol): update todo
This commit is contained in:
parent
bd1622d63a
commit
6840e04118
9 changed files with 382 additions and 71 deletions
|
|
@ -6,11 +6,13 @@ import { Loader2 } from "lucide-react";
|
|||
|
||||
export default function VideoViewer({
|
||||
className,
|
||||
fill = false,
|
||||
flush = false,
|
||||
publication,
|
||||
participantId,
|
||||
}: {
|
||||
className?: string;
|
||||
fill?: boolean;
|
||||
flush?: boolean;
|
||||
publication: TrackPublication;
|
||||
participantId: string;
|
||||
|
|
@ -28,7 +30,7 @@ export default function VideoViewer({
|
|||
<VideoTrack
|
||||
trackRef={trackRef}
|
||||
className={cn(
|
||||
"w-full h-full aspect-video bg-black",
|
||||
fill ? "w-full h-full bg-black" : "w-full h-full aspect-video bg-black",
|
||||
flush ? "rounded-none" : "rounded-md",
|
||||
className,
|
||||
)}
|
||||
|
|
|
|||
Loading…
Reference in a new issue