react-whitebox
Version:
A component to display your errors.
41 lines (40 loc) • 695 B
JavaScript
;
exports.__esModule = true;
exports['default'] = {
redbox: {
boxSizing: 'border-box',
fontFamily: 'sans-serif',
position: 'fixed',
padding: 10,
top: 0,
left: 0,
bottom: 0,
right: 0,
width: '100%',
background: 'white',
color: '#20202F',
zIndex: 9999,
textAlign: 'left',
fontSize: '16px',
lineHeight: 1.2
},
message: {
fontWeight: 'bold'
},
stack: {
fontFamily: 'monospace',
marginTop: '2em'
},
frame: {
marginTop: '1em'
},
file: {
fontSize: '0.8em',
color: '#A5A5A5'
},
linkToFile: {
textDecoration: 'none',
color: '#A5A5A5'
}
};
module.exports = exports['default'];