mirror of
https://github.com/stan-smith/FossFLOW.git
synced 2026-04-23 08:31:16 -04:00
fix: controls container now scrolls
This commit is contained in:
@@ -31,7 +31,11 @@ export const ItemControlsManager = () => {
|
||||
<Card
|
||||
sx={{
|
||||
position: 'absolute',
|
||||
width: '325px',
|
||||
overflowY: 'scroll',
|
||||
'&::-webkit-scrollbar': {
|
||||
display: 'none'
|
||||
},
|
||||
width: '345px',
|
||||
maxHeight: `calc(100% - ${theme.customVars.appPadding.y * 2}px)`,
|
||||
left: theme.customVars.appPadding.x,
|
||||
top: theme.customVars.appPadding.y,
|
||||
|
||||
@@ -24,11 +24,7 @@ export const ControlsContainer = ({ header, children }: Props) => {
|
||||
<Box
|
||||
sx={{
|
||||
width: '100%',
|
||||
overflowY: 'scroll',
|
||||
flexGrow: 1,
|
||||
'&::-webkit-scrollbar': {
|
||||
display: 'none'
|
||||
}
|
||||
flexGrow: 1
|
||||
}}
|
||||
>
|
||||
<Box sx={{ width: '100%' }}>{children}</Box>
|
||||
|
||||
Reference in New Issue
Block a user