aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/delayApp/styles.js
blob: 69c3c7a27bcd126cc00b149248c5269ef4e07d74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export default theme => ({
  container: {
    background: theme.colorBackground,
    top: 0,
    width: '100%',
    display: 'flex',
    'flex-direction': 'column',
    'align-items': 'center',
    'justify-content': 'center',
    'z-index': 150,
  },
  headline: {
    color: theme.colorHeadline,
    margin: [25, 0, 40],
    'max-width': 500,
    'text-align': 'center',
    'line-height': '1.3em',
  },
  button: {
    margin: [40, 0, 20],
  },
});