Skip to content

Commit 9f403f4

Browse files
fix(nav): prevent overflow of nav items causing page body overflow
1 parent a7e8e82 commit 9f403f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Navigation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const Navigation: React.FunctionComponent<NavigationProps> = ({
2525

2626
return (
2727
// Can possibly add back PageSidebar wrapper when https://github.com/patternfly/patternfly/issues/7377 goes in
28-
<PageSidebarBody id="page-sidebar-body">
28+
<PageSidebarBody id="page-sidebar-body" style={{ overflowY: 'auto' }}>
2929
<Nav onSelect={onNavSelect}>
3030
<NavList>
3131
{navData.map((navEntries) => {

0 commit comments

Comments
 (0)