aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/loading.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2017-11-10 00:47:10 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-11-10 03:18:47 +0800
commit62f2aebe1d9c3efd6ace8785fc96bb43ae08afe8 (patch)
tree9fdad876157e5fd4615f278edda2521902526d0c /ui/app/components/loading.js
parent424c1f23c91b06b687ddb3a3cbc79610584dc23f (diff)
downloadtangerine-wallet-browser-62f2aebe1d9c3efd6ace8785fc96bb43ae08afe8.tar.gz
tangerine-wallet-browser-62f2aebe1d9c3efd6ace8785fc96bb43ae08afe8.tar.zst
tangerine-wallet-browser-62f2aebe1d9c3efd6ace8785fc96bb43ae08afe8.zip
Network loading does not block network loading.
Diffstat (limited to 'ui/app/components/loading.js')
-rw-r--r--ui/app/components/loading.js15
1 files changed, 1 insertions, 14 deletions
diff --git a/ui/app/components/loading.js b/ui/app/components/loading.js
index 587212015..9442121fe 100644
--- a/ui/app/components/loading.js
+++ b/ui/app/components/loading.js
@@ -10,20 +10,7 @@ class LoadingIndicator extends Component {
render () {
return (
- h('.full-flex-height', {
- style: {
- left: '0px',
- zIndex: 50,
- position: 'absolute',
- flexDirection: 'column',
- display: 'flex',
- justifyContent: 'center',
- alignItems: 'center',
- height: '100%',
- width: '100%',
- background: 'rgba(255, 255, 255, 0.8)',
- },
- }, [
+ h('.full-flex-height.loading-overlay', {}, [
h('img', {
src: 'images/loading.svg',
}),