Skip to content

Commit

Permalink
fix: handle vertical overflow in team layout (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
rohan-chaturvedi authored Oct 12, 2023
1 parent cc83ad3 commit 4235403
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/app/[team]/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default function RootLayout({
<HeroPattern />
{showNav && <NavBar team={params.team} />}
{showNav && <Sidebar />}
<div className={clsx(showNav && 'pt-16')}>{children}</div>
<div className={clsx('min-h-screen overflow-auto', showNav && 'pt-16')}>{children}</div>
</div>
)
}

0 comments on commit 4235403

Please sign in to comment.