1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-24 17:51:14 +02:00
unleash.unleash/frontend/src/component/project/Project/Import/ImportLayoutContainer.tsx
2023-01-23 15:04:56 +01:00

11 lines
283 B
TypeScript

import { styled } from '@mui/material';
export const ImportLayoutContainer = styled('div')(({ theme }) => ({
backgroundColor: '#fff',
padding: theme.spacing(5, 8, 3, 8),
display: 'flex',
flexDirection: 'column',
gap: theme.spacing(3),
flexBasis: '70%',
}));