This commit is contained in:
legop3
2025-11-24 03:09:21 -05:00
parent 627ca21a56
commit 9f2b1e423f
5 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -86,13 +86,13 @@ function RoverRow({ roster, frames, videoSources, session }) {
function SecondaryRow() {
return (
<section className="grid grid-cols-1 gap-0.5 lg:grid-cols-[2fr_1fr_1fr]">
<section className="grid grid-cols-1 items-start gap-0.5 lg:grid-cols-[2fr_1fr_1fr]">
<RoomCameraPanel defaultOrientation="horizontal" hideLayoutToggle hideHeader />
<div className="flex flex-col self-start">
<UserListPanel hideNicknameForm hideHeader heightClass="max-h-[50vh]" />
<UserListPanel hideNicknameForm hideHeader heightClass="h-[40vh]" />
</div>
<div className="flex flex-col self-start">
<ChatPanel hideInput hideSpectatorNotice heightClass="max-h-[50vh]" />
<ChatPanel hideInput hideSpectatorNotice heightClass="h-[40vh]" />
</div>
</section>
);