aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/AppLoader/styles.js
blob: 755a56b40b750b9468e42921674945632e287219 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export default {
  component: {
    color: '#FFF',
  },
  slogan: {
    display: 'block',
    opacity: 0,
    transition: 'opacity 1s ease',
    position: 'absolute',
    textAlign: 'center',
    width: '100%',
  },
  visible: {
    opacity: 1,
  },
};