mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-24 17:51:14 +02:00
11 lines
283 B
TypeScript
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%',
|
|
}));
|