UNPKG

522 BJavaScriptView Raw
1export default {
2 overlay: {
3 backgroundColor:'rgba(0,0,0,0.5)',
4 position: 'fixed',
5 top: 0,
6 left: 0,
7 right: 0,
8 bottom: 0
9 },
10 content: {
11 background: '#fff',
12 position: 'absolute',
13 top: '0',
14 right: '0',
15 left: '0',
16 padding: '0',
17 bottom: 'auto',
18 width: '400px',
19 border: 'none',
20 overflow: 'hidden',
21 WebkitOverflowScrolling: 'touch',
22 borderRadius: '3px',
23 outline: 'none',
24 marginTop: '40px',
25 marginLeft: 'auto',
26 marginRight: 'auto'
27 }
28};