Vertically center loading indication

feature/default_network_editable
Dan Finlay 8 years ago
parent 6fda78cd2b
commit 96d416c486
  1. 12
      ui/app/components/token-list.js

@ -4,7 +4,6 @@ const inherits = require('util').inherits
const TokenTracker = require('eth-token-tracker')
const TokenCell = require('./token-cell.js')
const contracts = require('eth-contract-metadata')
const Loading = require('./loading')
const tokens = []
for (const address in contracts) {
@ -29,7 +28,16 @@ TokenList.prototype.render = function () {
const { userAddress } = this.props
if (isLoading) return h(Loading, { isLoading })
if (isLoading) {
return h('div', {
style: {
display: 'flex',
height: '250px',
alignItems: 'center',
justifyContent: 'center',
},
}, 'Loading')
}
const network = this.props.network

Loading…
Cancel
Save