Skip to content

Commit 9e47b8e

Browse files
committed
Fixed height
1 parent f0851cb commit 9e47b8e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

frontend/src/app/collab/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default function CollabPage() {
1010

1111
<div className="flex flex-1 w-full bg-stone-800 ">
1212

13-
<div className="flex-1">
13+
<div className="flex-1 p-5">
1414
<QuestionComponent />
1515
</div>
1616

frontend/src/app/components/collab/CodingComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default function CodingComponent() {
2323
}
2424

2525
return (
26-
<div className="mt-5">
26+
<div className="h-full mt-5">
2727
<div className="mb-4">
2828
<DropdownMenu>
2929
<DropdownMenuTrigger asChild className="flex justify-between">

frontend/src/app/components/collab/QuestionComponent.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
export default function QuestionComponent() {
22
return (
3-
<div>
3+
<div className="h-full flex flex-col">
44

55
{/* Question Description */}
6-
<div>
6+
<div className="flex-1">
77

88
</div>
99

1010
{/* Examples Section */}
11-
<div className="bg-stone-900">
11+
<div className="flex-1 bg-stone-900">
1212

1313
</div>
1414

0 commit comments

Comments
 (0)