summaryrefslogtreecommitdiffstats
path: root/src/components/ui/FullscreenLoader/styles.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-12-08 17:09:12 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-12-08 17:09:12 +0100
commit7ab7605c220c665607844784ffbf21a030888f8e (patch)
tree5285647db76b4cc16444d2fb81b7fb0585367416 /src/components/ui/FullscreenLoader/styles.js
parentfeat(Service): Add error screen for services that failed to load (diff)
downloadferdium-app-7ab7605c220c665607844784ffbf21a030888f8e.tar.gz
ferdium-app-7ab7605c220c665607844784ffbf21a030888f8e.tar.zst
ferdium-app-7ab7605c220c665607844784ffbf21a030888f8e.zip
Revamp app loaders
Diffstat (limited to 'src/components/ui/FullscreenLoader/styles.js')
-rw-r--r--src/components/ui/FullscreenLoader/styles.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/components/ui/FullscreenLoader/styles.js b/src/components/ui/FullscreenLoader/styles.js
new file mode 100644
index 000000000..64d24e4ce
--- /dev/null
+++ b/src/components/ui/FullscreenLoader/styles.js
@@ -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};