UNPKG

652 BJavaScriptView Raw
1export default {
2 redbox: {
3 boxSizing: 'border-box',
4 fontFamily: 'sans-serif',
5 position: 'fixed',
6 padding: 10,
7 top: 0,
8 left: 0,
9 bottom: 0,
10 right: 0,
11 width: '100%',
12 background: 'rgb(204, 0, 0)',
13 color: 'white',
14 zIndex: 9999,
15 textAlign: 'left',
16 fontSize: '16px',
17 lineHeight: 1.2
18 },
19 message: {
20 fontWeight: 'bold'
21 },
22 stack: {
23 fontFamily: 'monospace',
24 marginTop: '2em'
25 },
26 frame: {
27 marginTop: '1em'
28 },
29 file: {
30 fontSize: '0.8em',
31 color: 'rgba(255, 255, 255, 0.7)'
32 },
33 linkToFile: {
34 textDecoration: 'none',
35 color: 'rgba(255, 255, 255, 0.7)'
36 }
37};