@danilandreev/material-docs
Version:
material-docs - react framework for easy creating documentation site in material design style.
50 lines (46 loc) • 1.03 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.styles = void 0;
var _styles = require("@material-ui/core/styles");
/*
* Author: Andrieiev Danil | danssg08@gmail.com | https://github.com/DanilAndreev
* Copyright (C) 2020.
*/
var styles = function styles(theme) {
return (0, _styles.createStyles)({
root: {
padding: theme.spacing(0.5),
paddingBottom: 0,
paddingTop: theme.spacing(1),
fontSize: "1rem",
fontWeight: 400,
letterSpacing: "0.00938em"
},
typeCircle: {
listStyleType: "circle"
},
typeSquare: {
listStyleType: "square"
},
typeRoman: {
listStyleType: "upper-roman"
},
typeAlpha: {
listStyleType: "lower-alpha"
},
typeNone: {
listStyle: "none"
},
list: {
paddingLeft: theme.spacing(2)
},
dense: {
padding: theme.spacing(0.3),
paddingLeft: theme.spacing(0.5),
paddingTop: theme.spacing(0.4)
}
});
};
exports.styles = styles;