@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
37 lines (36 loc) • 1.03 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.StyledBox = exports.Root = exports.Puller = void 0;
var _material = require("@mui/material");
var Root = exports.Root = (0, _material.styled)('div')(function (_ref) {
var theme = _ref.theme;
return {
height: '100%',
backgroundColor: theme.palette.background["default"],
borderTopLeftRadius: '190px',
borderTopRightRadius: '190px'
};
});
var StyledBox = exports.StyledBox = (0, _material.styled)(_material.Box)(function (_ref2) {
var theme = _ref2.theme;
return {
backgroundColor: theme.palette.background["default"]
};
});
var Puller = exports.Puller = (0, _material.styled)(_material.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,
};
});