fix: removes sidebar on controls panel

This commit is contained in:
Mark Mankarious
2023-07-25 10:58:46 +01:00
parent a76e5e7289
commit 6a152ee7a7

View File

@@ -21,7 +21,12 @@ export const ControlsContainer = ({ header, children }: Props) => (
sx={{
width: '100%',
overflowY: 'scroll',
flexGrow: 1
flexGrow: 1,
'&::-webkit-scrollbar': {
display: 'none'
},
'-ms-overflow-style': 'none',
'scrollbar-width': 'none'
}}
>
<Box sx={{ width: '100%', pb: 6 }}>{children}</Box>