materialuiupgraded
Version:
Material-UI's workspace package
42 lines (36 loc) • 1.1 kB
JavaScript
import React from 'react';
import PropTypes from 'prop-types';
import { withStyles } from '@material-ui/core/styles';
const styles = theme => ({
'@global': {
html: {
WebkitFontSmoothing: 'antialiased', // Antialiasing.
MozOsxFontSmoothing: 'grayscale', // Antialiasing.
// Do the opposite of the docs in order to help catching issues.
boxSizing: 'content-box',
},
'*, *::before, *::after': {
boxSizing: 'inherit',
// Disable transitions to avoid flaky screenshots
transition: 'none !important',
animation: 'none !important',
},
body: {
margin: 0,
overflowX: 'hidden',
},
},
root: {
backgroundColor: theme.palette.background.default,
padding: theme.spacing.unit,
},
});
function TestViewer(props) {
const { children, classes } = props;
return <div className={classes.root}>{children}</div>;
}
TestViewer.propTypes = {
children: PropTypes.node.isRequired,
classes: PropTypes.object.isRequired,
};
export default withStyles(styles)(TestViewer);