Local modifications to ClusterLabs/Anvil by Alteeve
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.
 
 
 
 
 
 

18 lines
373 B

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;