summaryrefslogtreecommitdiffstats
path: root/src/components/ui/AppLoader/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/AppLoader/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/AppLoader/styles.js')
-rw-r--r--src/components/ui/AppLoader/styles.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/components/ui/AppLoader/styles.js b/src/components/ui/AppLoader/styles.js
new file mode 100644
index 000000000..755a56b40
--- /dev/null
+++ b/src/components/ui/AppLoader/styles.js
@@ -0,0 +1,16 @@
1export default {
2 component: {
3 color: '#FFF',
4 },
5 slogan: {
6 display: 'block',
7 opacity: 0,
8 transition: 'opacity 1s ease',
9 position: 'absolute',
10 textAlign: 'center',
11 width: '100%',
12 },
13 visible: {
14 opacity: 1,
15 },
16};