File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
frontend/components/collab Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ export default function Chat({ roomId }: { roomId: string }) {
202
202
}
203
203
204
204
return (
205
- < Card className = "flex flex-col" >
205
+ < Card className = "flex flex-col h-full " >
206
206
< CardHeader >
207
207
< CardTitle className = "flex justify-between items-center" >
208
208
Chat
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import Link from "next/link";
8
8
9
9
export default function CollabRoom ( { roomId } : { roomId : string } ) {
10
10
return (
11
- < div className = "h-full flex flex-col mx-4 p-4" >
11
+ < div className = "h-screen flex flex-col mx-4 p-4 overflow-hidden " >
12
12
< header className = "flex justify-between border-b" >
13
13
< h1 className = "text-2xl font-bold mb-4" > Collab Room { roomId } </ h1 >
14
14
< Link href = "/app/history" >
@@ -18,10 +18,12 @@ export default function CollabRoom({ roomId }: { roomId: string }) {
18
18
</ Button >
19
19
</ Link >
20
20
</ header >
21
- < div className = "flex flex-1" >
22
- < div className = "w-2/5 p-4 flex flex-col space-y-4" >
21
+ < div className = "flex flex-1 overflow-hidden " >
22
+ < div className = "w-2/5 p-4 flex flex-col space-y-4 overflow-hidden " >
23
23
< QuestionDisplay roomId = { roomId } />
24
- < Chat roomId = { roomId } />
24
+ < div className = "flex-1 overflow-hidden" >
25
+ < Chat roomId = { roomId } />
26
+ </ div >
25
27
</ div >
26
28
< CodeEditor roomId = { roomId } />
27
29
</ div >
You can’t perform that action at this time.
0 commit comments