This commit is contained in:
2025-11-07 14:59:49 +05:00
parent 28091d732a
commit 48f5833046
5 changed files with 17 additions and 12 deletions
+7 -3
View File
@@ -193,7 +193,7 @@ function SessionUsersPanel({
"z-[100] 2xl:gap-[0.556vw] gap-2",
mode === "mini"
? "flex"
: `2xl:p-[2.778vw_5vw_5vw] p-[12px_12px_72px] w-full 2xl:h-dvh min-h-fulla grid relative 2xl:bg-black auto-rows-fr`,
: `2xl:p-[2.778vw_5vw_5vw] p-[12px_12px_72px] w-full 2xl:h-dvh grid relative 2xl:bg-black auto-rows-fr`,
gridColumns === 1
? "grid-cols-1"
: gridColumns === 2
@@ -221,7 +221,9 @@ function SessionUsersPanel({
participantId={currentUserId}
className={clsx(
mode === "full" &&
(activeCamerasCount <= 2 ? "m-auto" : "min-w-full min-h-full")
(activeCamerasCount <= 2
? "m-auto"
: "min-w-full w-full min-h-full")
)}
/>
))}
@@ -237,7 +239,9 @@ function SessionUsersPanel({
<UserCamera
className={clsx(
mode === "full" &&
(activeCamerasCount <= 2 ? "m-auto" : "min-w-full min-h-full")
(activeCamerasCount <= 2
? "m-auto"
: "min-w-full w-full min-h-full")
)}
key={participant.id}
mode={mode}