You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
373 B
19 lines
373 B
2 years ago
|
import { Box as MUIBox, styled } from '@mui/material';
|
||
|
|
||
|
import { GREY } from '../lib/consts/DEFAULT_THEME';
|
||
|
|
||
|
const DropArea = styled(MUIBox)(() => ({
|
||
|
borderColor: GREY,
|
||
|
borderStyle: 'dashed',
|
||
|
borderWidth: '4px',
|
||
|
display: 'flex',
|
||
|
flexDirection: 'column',
|
||
|
padding: '.6em',
|
||
|
|
||
|
'& > :not(:first-child)': {
|
||
|
marginTop: '.3em',
|
||
|
},
|
||
|
}));
|
||
|
|
||
|
export default DropArea;
|