feat: layout padding and scroll added

This commit is contained in:
2025-08-20 23:28:18 +03:30
parent c738c58618
commit 882498637b
37 changed files with 19 additions and 6 deletions

View File

@@ -44,7 +44,15 @@ export const Layout = () => {
setSideNavOpen={setSideNavOpen}
user={userInfo}
/>
<Box sx={{ flex: 1, overflowY: 'auto' }}>
<Box
sx={{
flex: 1,
overflowY: 'auto',
p: 2,
maxHeight: 'calc(100% - 85px)',
overflowInline: 'auto',
}}
>
<Outlet />
</Box>
</Box>