UNPKG

@activelylearn/material-ui

Version:

Material-UI's workspace package

56 lines (49 loc) 1.33 kB
import React from 'react'; import PropTypes from 'prop-types'; import { withStyles } from '../styles'; import exactProp from '../utils/exactProp'; const styles = theme => ({ '@global': { html: { WebkitFontSmoothing: 'antialiased', // Antialiasing. MozOsxFontSmoothing: 'grayscale', // Antialiasing. // Change from `box-sizing: content-box` so that `width` // is not affected by `padding` or `border`. boxSizing: 'border-box', }, '*, *::before, *::after': { boxSizing: 'inherit', }, body: { margin: 0, // Remove the margin in all browsers. backgroundColor: theme.palette.background.default, '@media print': { // Save printer ink. backgroundColor: theme.palette.common.white, }, }, }, }); /** * Kickstart an elegant, consistent, and simple baseline to build upon. */ class CssBaseline extends React.Component { render() { return this.props.children; } } CssBaseline.propTypes = { /** * You can wrap a node. */ children: PropTypes.node, /** * @ignore */ classes: PropTypes.object.isRequired, }; CssBaseline.propTypes = exactProp(CssBaseline.propTypes, 'CssBaseline'); CssBaseline.defaultProps = { children: null, }; export default withStyles(styles, { name: 'MuiCssBaseline' })(CssBaseline);