aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/modals/export-private-key-modal.js
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@gmail.com>2018-03-26 13:19:42 +0800
committerAlexander Tseung <alextsg@gmail.com>2018-03-26 13:58:04 +0800
commitcfa2592d78b31ea3c5d056bf1344cfd5d5353f16 (patch)
tree6af1ada572dfc6d7a9a9b0c69a7a3ecfc834b3d9 /ui/app/components/modals/export-private-key-modal.js
parentdc78594c3aac80150dbe7eecd05e05eeffa6da02 (diff)
downloadtangerine-wallet-browser-cfa2592d78b31ea3c5d056bf1344cfd5d5353f16.tar
tangerine-wallet-browser-cfa2592d78b31ea3c5d056bf1344cfd5d5353f16.tar.gz
tangerine-wallet-browser-cfa2592d78b31ea3c5d056bf1344cfd5d5353f16.tar.bz2
tangerine-wallet-browser-cfa2592d78b31ea3c5d056bf1344cfd5d5353f16.tar.lz
tangerine-wallet-browser-cfa2592d78b31ea3c5d056bf1344cfd5d5353f16.tar.xz
tangerine-wallet-browser-cfa2592d78b31ea3c5d056bf1344cfd5d5353f16.tar.zst
tangerine-wallet-browser-cfa2592d78b31ea3c5d056bf1344cfd5d5353f16.zip
Update button styles
Diffstat (limited to 'ui/app/components/modals/export-private-key-modal.js')
-rw-r--r--ui/app/components/modals/export-private-key-modal.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/app/components/modals/export-private-key-modal.js b/ui/app/components/modals/export-private-key-modal.js
index 017177cfd..cf42e4fa2 100644
--- a/ui/app/components/modals/export-private-key-modal.js
+++ b/ui/app/components/modals/export-private-key-modal.js
@@ -81,14 +81,14 @@ ExportPrivateKeyModal.prototype.renderButton = function (className, onClick, lab
ExportPrivateKeyModal.prototype.renderButtons = function (privateKey, password, address, hideModal) {
return h('div.export-private-key-buttons', {}, [
!privateKey && this.renderButton(
- 'btn-cancel export-private-key__button export-private-key__button--cancel',
+ 'btn-secondary--lg export-private-key__button export-private-key__button--cancel',
() => hideModal(),
'Cancel'
),
(privateKey
- ? this.renderButton('btn-clear export-private-key__button', () => hideModal(), t('done'))
- : this.renderButton('btn-clear export-private-key__button', () => this.exportAccountAndGetPrivateKey(this.state.password, address), t('confirm'))
+ ? this.renderButton('btn-primary--lg export-private-key__button', () => hideModal(), t('done'))
+ : this.renderButton('btn-primary--lg export-private-key__button', () => this.exportAccountAndGetPrivateKey(this.state.password, address), t('confirm'))
),
])