This commit is contained in:
legop3
2025-11-24 03:07:18 -05:00
parent 1e788be509
commit 627ca21a56
5 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -88,11 +88,11 @@ function SecondaryRow() {
return (
<section className="grid grid-cols-1 gap-0.5 lg:grid-cols-[2fr_1fr_1fr]">
<RoomCameraPanel defaultOrientation="horizontal" hideLayoutToggle hideHeader />
<div className="flex flex-col">
<UserListPanel hideNicknameForm hideHeader heightClass="h-[50vh]" />
<div className="flex flex-col self-start">
<UserListPanel hideNicknameForm hideHeader heightClass="max-h-[50vh]" />
</div>
<div className="flex flex-col">
<ChatPanel hideInput hideSpectatorNotice heightClass="h-[50vh]" />
<div className="flex flex-col self-start">
<ChatPanel hideInput hideSpectatorNotice heightClass="max-h-[50vh]" />
</div>
</section>
);