Skip to content

Commit cb2c822

Browse files
committed
fix: update layout to allow vertical scrolling in main content area
1 parent cf7c61f commit cb2c822

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export const PageLayout = ({ children }: { children: React.ReactNode }) => {
107107
)}
108108
</nav>
109109
) : null}
110-
<main className="flex-1 min-h-0 overflow-hidden">{children}</main>
110+
<main className="flex-1 min-h-0 overflow-y-auto">{children}</main>
111111
</div>
112112
);
113113
};

0 commit comments

Comments
 (0)