aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/qr-code.js
diff options
context:
space:
mode:
authorsdtsui <szehungdanieltsui@gmail.com>2017-08-22 03:26:36 +0800
committersdtsui <szehungdanieltsui@gmail.com>2017-08-22 03:26:36 +0800
commit27b75b67b42c232051660c33da976d64a63ff407 (patch)
tree5072382a5b206dadcc6a54b6a03e3ef0a85d4b11 /ui/app/components/qr-code.js
parent877faaf09608fbb5f1ba9dd853959e7399893068 (diff)
downloadtangerine-wallet-browser-27b75b67b42c232051660c33da976d64a63ff407.tar.gz
tangerine-wallet-browser-27b75b67b42c232051660c33da976d64a63ff407.tar.zst
tangerine-wallet-browser-27b75b67b42c232051660c33da976d64a63ff407.zip
Hook up identicon and buttons to AccountDetailsModal, clean up colors
Diffstat (limited to 'ui/app/components/qr-code.js')
-rw-r--r--ui/app/components/qr-code.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/ui/app/components/qr-code.js b/ui/app/components/qr-code.js
index 914d3aa29..1de5f7352 100644
--- a/ui/app/components/qr-code.js
+++ b/ui/app/components/qr-code.js
@@ -30,22 +30,13 @@ QrCodeView.prototype.render = function () {
qrImage.addData(address)
qrImage.make()
return h('.div.flex-column.flex-center', {
- // key: 'qr',
style: {
- // justifyContent: 'center',
- // paddingBottom: '45px',
- // paddingLeft: '45px',
- // paddingRight: '45px',
- // alignItems: 'center',
},
}, [
Array.isArray(Qr.message) ? h('.message-container', this.renderMultiMessage()) : h('.qr-header', Qr.message),
this.props.warning ? this.props.warning && h('span.error.flex-center', {
style: {
- // textAlign: 'center',
- // width: '229px',
- // height: '82px',
},
},
this.props.warning) : null,