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

15 lines
342 B
JavaScript

import { styled } from '@mui/material/styles';
import { Box } from '@mui/material';
export const NodeWrapper = styled(Box)(({ theme }) => ({
width: '100vw',
display: 'flex',
justifyContent: 'center',
padding: theme.spacing(0, 2.5),
}));
export const NodeInnerWrapper = styled(Box)(({ theme }) => ({
maxWidth: 900,
flex: 1,
}));