mirror of
https://github.com/stan-smith/FossFLOW.git
synced 2025-12-24 06:58:48 -05:00
fix: removes sidebar on controls panel
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user