Skip to content

Commit d197ab9

Browse files
author
Chris Scott
committed
fix: add min-h-0 to session list container for proper scrolling
1 parent a434431 commit d197ab9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/pages/RepoDetail.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export function RepoDetail() {
9191
const currentBranch = repo.currentBranch || "main";
9292

9393
return (
94-
<div className="min-h-screen bg-gradient-to-br from-background via-background to-background flex flex-col">
94+
<div className="h-screen bg-gradient-to-br from-background via-background to-background flex flex-col">
9595
<div className="sticky top-0 z-10 border-b border-border bg-gradient-to-b from-background via-background to-background backdrop-blur-sm px-4 py-2">
9696
<div className="flex items-center justify-between">
9797
<div className="flex items-center gap-3">
@@ -149,7 +149,7 @@ export function RepoDetail() {
149149
</div>
150150
</div>
151151

152-
<div className="flex-1 overflow-hidden">
152+
<div className="flex-1 overflow-hidden min-h-0">
153153
{opcodeUrl && repoDirectory && (
154154
<SessionList
155155
opcodeUrl={opcodeUrl}

0 commit comments

Comments
 (0)