aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/Modal/styles.js
blob: c2bebf9bb936ba2a6db79acb62181004f21c1395 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
export default theme => ({
  component: {
    zIndex: 500,
    position: 'absolute',
  },
  overlay: {
    background: theme.colorModalOverlayBackground,
    position: 'fixed',
    top: 0,
    left: 0,
    right: 0,
    bottom: 0,
    display: 'flex',
  },
  modal: {
    background: theme.colorModalBackground,
    maxWidth: '90%',
    height: 'auto',
    margin: 'auto auto',
    borderRadius: 6,
    boxShadow: '0px 13px 40px 0px rgba(0,0,0,0.2)',
    position: 'relative',
  },
  content: {
    padding: 20,
  },
  close: {
    position: 'absolute',
    top: 0,
    right: 0,
    padding: 20,
  },
});