aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/FullscreenLoader/styles.js
blob: 64d24e4ce8fc69bf19defaf7f185f8a7a745d497 (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
export default {
  wrapper: {
    display: 'flex',
    alignItems: 'center',
    position: 'absolute',
    width: '100%',
  },
  component: {
    width: '100%',
    display: 'flex',
    flexDirection: 'column',
    alignItems: 'center',
    textAlign: 'center',
    height: 'auto',
  },
  title: {
    fontSize: 35,
  },
  content: {
    marginTop: 20,
    width: '100%',
  },
};