Skip to content

Commit

Permalink
Fix: 대기방 많아졌을 때 UI 깨지는 현상 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
leewooseong committed May 19, 2024
1 parent 6b63341 commit cf95067
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/app/(page)/(needProtection)/lobby/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ const Lobby = () => {

return (
<main className="grid grid-cols-3 grid-rows-3 h-[calc(100vh-3rem)]">
<section className="col-span-3 row-span-2 ">
<section className="col-span-3 row-span-2 overflow-y-scroll">
<WaitingRoomList />
</section>
<div className="col-span-3 grid grid-cols-3">
<section className="col-span-1 flex items-center justify-center shadow-inner">
<UserInfo />
</section>
<section className="col-span-2 relative rounded overflow-hidden">
<section className="col-span-2 relative rounded overflow-hidden bg-black">
<Chat />
</section>
</div>
Expand Down

0 comments on commit cf95067

Please sign in to comment.