aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/FullscreenLoader/styles.ts
blob: 9a1b24400d01193a65040d1f776217cefff0fc89 (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%',
  },
  component: {
    width: '100%',
    display: 'flex',
    flexDirection: 'column',
    alignItems: 'center',
    textAlign: 'center',
    height: 'auto',
    gap: 8,
  },
  title: {
    fontSize: 35,
  },
  content: {
    marginTop: 20,
    width: '100%',
  },
};