aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/FullscreenLoader/styles.js
blob: d516781a884d7229612df9c975b4c3a41a24e066 (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
export default {
  wrapper: {
    display: 'flex',
    alignItems: 'center',
    position: 'absolute',
    width: '100%',
    background: 'linear-gradient( 135deg, #CE9FFC 10%, #7367F0 100%)',
  },
  component: {
    width: '100%',
    display: 'flex',
    flexDirection: 'column',
    alignItems: 'center',
    textAlign: 'center',
    height: 'auto',
  },
  title: {
    fontSize: 35,
  },
  content: {
    marginTop: 20,
    width: '100%',
  },
};