chore: hide sidebar

Signed-off-by: benjdlambert <ben@blam.sh>
This commit is contained in:
benjdlambert
2025-07-24 09:58:04 +02:00
parent 07242020a0
commit c50d1f7c4a
@@ -105,6 +105,13 @@ const useStyles = makeStyles<
maxHeight: `calc(100vh - ${theme.spacing(6)}px)`,
overflowY: 'auto',
alignSelf: 'start',
// Hide the scrollbar for the inner info cards
// kind of an accessibility nightmare, but we see.
scrollbarWidth: 'none',
msOverflowStyle: 'none',
'&::-webkit-scrollbar': {
display: 'none',
},
},
},
}));