summaryrefslogtreecommitdiffstats
path: root/src/components/ui/AppLoader/styles.js
diff options
context:
space:
mode:
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};