Skip to content

Commit

Permalink
Merge pull request #5320 from novuhq/tweak_sidebar_in_scrollbar
Browse files Browse the repository at this point in the history
fix(web): Tweak scrollbar placement in sidebar
  • Loading branch information
SokratisVidros authored Mar 21, 2024
2 parents 6cad582 + faaa66b commit 4f569cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/web/src/components/layout/components/SideNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,19 +171,19 @@ export function SideNav({}: Props) {
borderRight: 'none',
width: '300px',
minHeight: '100vh',
padding: '16px 24px',
padding: '16px 0',
paddingBottom: '0px',
'@media (max-width: 768px)': {
width: '100%',
},
}}
>
<Navbar.Section mb={24}>
<Navbar.Section sx={{ marginBottom: '24px', padding: '0 24px' }}>
<Link to="/">
<NovuLogo />
</Link>
</Navbar.Section>
<Navbar.Section sx={{ overflowY: 'auto', flex: 1 }}>
<Navbar.Section sx={{ overflowY: 'auto', flex: 1, padding: '0 24px' }}>
<Popover
classNames={classes}
withArrow
Expand Down

0 comments on commit 4f569cc

Please sign in to comment.