Skip to content

Commit ed65632

Browse files
authored
fix: scroll overflow y (#139)
1 parent aa03f4b commit ed65632

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/pages/admin/[id]/index.tsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ const AdminIndexPage = () => {
3636
currentUser !== null ? (
3737
<AuthProvider>
3838
<CssBaseline />
39-
<Box
40-
sx={{
41-
display: 'flex',
42-
flexDirection: 'column',
43-
width: '100%',
44-
height: '100vh',
45-
overflow: 'hidden',
46-
}}
47-
>
39+
<Toolbar/>
40+
<Box sx={{
41+
display: 'flex',
42+
flexDirection: 'column',
43+
width: '100%',
44+
height: '100vh',
45+
overflow: 'hidden',
46+
overflowY: 'scroll',
47+
}}>
4848
<Navbar profile={currentProfile} />
4949
<Box
5050
sx={{

0 commit comments

Comments
 (0)