react-whitebox
Version:
A component to display your errors.
38 lines (37 loc) • 611 B
JavaScript
export 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'
}
};