diff options
author | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-21 20:58:30 +0800 |
---|---|---|
committer | sdtsui <szehungdanieltsui@gmail.com> | 2017-08-21 20:58:30 +0800 |
commit | 35508a28984afeccac31eb7c6789e26681f02b22 (patch) | |
tree | c79ceb4d7b9ae7788672f86274ba0778414cbb2d /ui/app/components/modals/account-details-modal.js | |
parent | 3fa7c5dc0814bce907c7adbd6e39e1759186120c (diff) | |
download | tangerine-wallet-browser-35508a28984afeccac31eb7c6789e26681f02b22.tar tangerine-wallet-browser-35508a28984afeccac31eb7c6789e26681f02b22.tar.gz tangerine-wallet-browser-35508a28984afeccac31eb7c6789e26681f02b22.tar.bz2 tangerine-wallet-browser-35508a28984afeccac31eb7c6789e26681f02b22.tar.lz tangerine-wallet-browser-35508a28984afeccac31eb7c6789e26681f02b22.tar.xz tangerine-wallet-browser-35508a28984afeccac31eb7c6789e26681f02b22.tar.zst tangerine-wallet-browser-35508a28984afeccac31eb7c6789e26681f02b22.zip |
Add wrapper CSS for AccountDetailsModal
Diffstat (limited to 'ui/app/components/modals/account-details-modal.js')
-rw-r--r-- | ui/app/components/modals/account-details-modal.js | 54 |
1 files changed, 25 insertions, 29 deletions
diff --git a/ui/app/components/modals/account-details-modal.js b/ui/app/components/modals/account-details-modal.js index 38d08314b..104d2c6ed 100644 --- a/ui/app/components/modals/account-details-modal.js +++ b/ui/app/components/modals/account-details-modal.js @@ -30,44 +30,40 @@ module.exports = connect(mapStateToProps, mapDispatchToProps)(AccountDetailsModa // It utilizes modal styles AccountDetailsModal.prototype.render = function () { return h('div', {}, [ - h('div.buy-modal-content.transfers-subview', { + h('div.account-details-modal-wrapper', { }, [ - h('div.buy-modal-content-title-wrapper.flex-column.flex-center', { - style: {}, - }, [ - h('div.buy-modal-content-title', { - style: {}, - }, 'Account Details Modal'), - h('div', {}, 'How would you like to buy Ether?'), + + h('div', {}, [ + 'ICON', ]), - h('div.buy-modal-content-options.flex-column.flex-center', {}, [ + h('div', {}, [ + 'X', + ]), - h('div.buy-modal-content-option', { - onClick: () => {}, - }, [ - h('div.buy-modal-content-option-title', {}, 'Coinbase'), - h('div.buy-modal-content-option-subtitle', {}, 'Buy with Fiat'), - ]), + h('div', {}, [ + ]), - h('div.buy-modal-content-option', {}, [ - h('div.buy-modal-content-option-title', {}, 'Shapeshift'), - h('div.buy-modal-content-option-subtitle', {}, 'Trade any digital asset for any other'), - ]), + h('div', {}, [ + 'QR Code', + ]), - h('div.buy-modal-content-option', {}, [ - h('div.buy-modal-content-option-title', {}, 'Direct Deposit'), - h('div.buy-modal-content-option-subtitle', {}, 'Deposit from another account'), - ]), + h('div', {}, [ + 'Account Display', + ]), + + h('div', {}, [ + 'divider', + ]), + + h('div', {}, [ + 'View aCcount on etherscan', + ]), + h('div', {}, [ + 'export private key', ]), - h('button', { - style: { - background: 'white', - }, - onClick: () => { this.props.hideModal() }, - }, h('div.buy-modal-content-footer#buy-modal-content-footer-text',{}, 'Cancel')), ]) ]) } |