summaryrefslogtreecommitdiff
path: root/src/components/LoadingIndicator/styles.js
blob: 2e5c5d311d76581b36fed656090bc4ed737616c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
const box = {
  width: '100%',
  position: 'absolute',
  top: 0,
};

const linearProgress = {
  height: '7px',
};

const styles = { box, linearProgress };
export default styles;