@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
38 lines • 809 B
JavaScript
import { styled } from '@mui/material';
export var OrderedList = styled('ol')(function (_ref) {
var theme = _ref.theme;
return {
margin: 0,
color: theme.palette.text.primary,
paddingLeft: 16,
marginBottom: 8,
marginTop: 8
};
});
export var UnOrderedList = styled('ul')(function (_ref2) {
var theme = _ref2.theme;
return {
margin: 0,
color: theme.palette.text.primary,
paddingLeft: 16,
marginBottom: 8,
marginTop: 8
};
});
export var List = styled('div')(function (_ref3) {
var theme = _ref3.theme;
return {
margin: 0,
color: theme.palette.text.primary,
marginBottom: 8,
marginTop: 8
};
});
export var Item = styled('li')(function () {
return {
fontWeight: 600,
fontSize: '16px',
lineHeight: '30px',
margin: 0
};
});