From 27b75b67b42c232051660c33da976d64a63ff407 Mon Sep 17 00:00:00 2001 From: sdtsui Date: Mon, 21 Aug 2017 12:26:36 -0700 Subject: Hook up identicon and buttons to AccountDetailsModal, clean up colors --- ui/app/components/qr-code.js | 9 --------- 1 file changed, 9 deletions(-) (limited to 'ui/app/components/qr-code.js') 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, -- cgit