We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76c91d6 commit 5a6fb3cCopy full SHA for 5a6fb3c
frontend/src/pages/ProjectDetail.tsx
@@ -77,8 +77,9 @@ export default function ProjectDetailPage() {
77
};
78
79
return (
80
- <div className="w-full">
81
- <div className="mx-auto w-full max-w-4xl px-6 py-8">
+ <div className="flex-1 flex flex-col min-h-0">
+ <div className="flex-1 overflow-y-auto">
82
+ <div className="mx-auto w-full max-w-4xl px-6 py-8">
83
<button
84
type="button"
85
onClick={() => navigate("/projects")}
@@ -150,6 +151,7 @@ export default function ProjectDetailPage() {
150
151
</div>
152
)}
153
154
+ </div>
155
156
157
);
0 commit comments