Skip to content

Commit

Permalink
fix(web): Tweak scrollbar placement in sidebar
Browse files Browse the repository at this point in the history
  • Loading branch information
SokratisVidros committed Mar 20, 2024
1 parent 5b7a721 commit faaa66b
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 faaa66b

Please sign in to comment.