Files
automatisch/packages/web/src/components/EditorNew/style.js
2024-06-04 07:18:18 +00:00

14 lines
290 B
JavaScript

import { Stack } from '@mui/material';
import { styled } from '@mui/material/styles';
export const EditorWrapper = styled(Stack)(({ theme }) => ({
flexGrow: 1,
'& > div': {
flexGrow: 1,
},
'& .react-flow__pane, & .react-flow__node': {
cursor: 'auto !important',
},
}));