aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/loading.js
diff options
context:
space:
mode:
authorKevin Serrano <kevgagser@gmail.com>2017-06-23 08:28:10 +0800
committerGitHub <noreply@github.com>2017-06-23 08:28:10 +0800
commitf022c7c714e17faf9558839116ba90ca8082e6b1 (patch)
tree7cab7a825004343b6f7d3aa909eef71d31391fc6 /ui/app/components/loading.js
parent2a429253994a0df2aae27234a7ac11c870bdc713 (diff)
parentc0c588053a29a4406ef30de8628065429ff99595 (diff)
downloadtangerine-wallet-browser-f022c7c714e17faf9558839116ba90ca8082e6b1.tar
tangerine-wallet-browser-f022c7c714e17faf9558839116ba90ca8082e6b1.tar.gz
tangerine-wallet-browser-f022c7c714e17faf9558839116ba90ca8082e6b1.tar.bz2
tangerine-wallet-browser-f022c7c714e17faf9558839116ba90ca8082e6b1.tar.lz
tangerine-wallet-browser-f022c7c714e17faf9558839116ba90ca8082e6b1.tar.xz
tangerine-wallet-browser-f022c7c714e17faf9558839116ba90ca8082e6b1.tar.zst
tangerine-wallet-browser-f022c7c714e17faf9558839116ba90ca8082e6b1.zip
Merge pull request #1603 from MetaMask/AddTokenList
Add popular token list
Diffstat (limited to 'ui/app/components/loading.js')
-rw-r--r--ui/app/components/loading.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/ui/app/components/loading.js b/ui/app/components/loading.js
index 88dc535df..87d6f5d20 100644
--- a/ui/app/components/loading.js
+++ b/ui/app/components/loading.js
@@ -26,18 +26,21 @@ LoadingIndicator.prototype.render = function () {
style: {
zIndex: 10,
position: 'absolute',
+ flexDirection: 'column',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
height: '100%',
width: '100%',
- background: 'rgba(255, 255, 255, 0.5)',
+ background: 'rgba(255, 255, 255, 0.8)',
},
}, [
h('img', {
src: 'images/loading.svg',
}),
+ h('br'),
+
showMessageIfAny(loadingMessage),
]) : null,
])