Skip to content

Commit ac5d32b

Browse files
authored
Prevent review pane from scrolling independently (#336)
- Change the project subpage shell to hide overflow on the main content container - Keep scrolling behavior constrained to the intended nested content
1 parent 382ea19 commit ac5d32b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/web/src/components/review/ProjectSubpageShell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export function ProjectSubpageShell({
6767
</div>
6868
)}
6969

70-
<div className="min-h-0 flex-1 overflow-y-auto">
70+
<div className="flex min-h-0 flex-1 flex-col overflow-hidden">
7171
{selectedProject ? (
7272
children({
7373
project: selectedProject,

0 commit comments

Comments
 (0)