react-whitebox
Version:
A component to display your errors.
25 lines (24 loc) • 440 B
JavaScript
module.exports = {
style: {
redbox: {
boxSizing: 'border-box',
fontFamily: 'sans-serif',
padding: 10,
top: 0,
left: 0,
bottom: 0,
right: 0,
width: '100%',
background: 'rgb(173, 49, 49)',
color: 'white',
zIndex: 9999,
textAlign: 'left',
fontSize: '16px',
lineHeight: 1.2
},
message: {
fontWeight: 'bold',
fontSize: 20
}
}
};