aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/FullscreenLoader/styles.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ui/FullscreenLoader/styles.ts')
-rw-r--r--src/components/ui/FullscreenLoader/styles.ts23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/components/ui/FullscreenLoader/styles.ts b/src/components/ui/FullscreenLoader/styles.ts
new file mode 100644
index 000000000..64d24e4ce
--- /dev/null
+++ b/src/components/ui/FullscreenLoader/styles.ts
@@ -0,0 +1,23 @@
1export default {
2 wrapper: {
3 display: 'flex',
4 alignItems: 'center',
5 position: 'absolute',
6 width: '100%',
7 },
8 component: {
9 width: '100%',
10 display: 'flex',
11 flexDirection: 'column',
12 alignItems: 'center',
13 textAlign: 'center',
14 height: 'auto',
15 },
16 title: {
17 fontSize: 35,
18 },
19 content: {
20 marginTop: 20,
21 width: '100%',
22 },
23};