fix: Add overflowX hidden to Box in Sidepanel for improved layout

This commit is contained in:
Mo Tarbin
2025-06-04 00:33:05 -04:00
parent 6c1be53f86
commit f2c36cae37

View File

@@ -55,7 +55,7 @@ const Sidepanel = ({ chores }) => {
width: '315px',
}}
>
<Box sx={{ width: '100%', overflowY: 'hidden' }}>
<Box sx={{ width: '100%', overflowY: 'hidden', overflowX: 'hidden' }}>
<CalendarView chores={chores} />
</Box>
</Sheet>