@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
31 lines • 798 B
JavaScript
import { Box, styled } from '@mui/material';
export var Root = styled('div')(function (_ref) {
var theme = _ref.theme;
return {
height: '100%',
backgroundColor: theme.palette.background["default"],
borderTopLeftRadius: '190px',
borderTopRightRadius: '190px'
};
});
export var StyledBox = styled(Box)(function (_ref2) {
var theme = _ref2.theme;
return {
backgroundColor: theme.palette.background["default"]
};
});
export var Puller = styled(Box)(function (_ref3) {
var theme = _ref3.theme;
return {
width: 140,
height: 7,
backgroundColor: theme.palette.text.secondary,
borderRadius: 3
// display: 'inline-block',
// marginLeft: 'auto',
// marginRight: 'auto',
// marginTop: '1rem',
// position: 'fixed',
// top: 0,
};
});