aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/modals/export-private-key-modal.js
diff options
context:
space:
mode:
authorDan Finlay <542863+danfinlay@users.noreply.github.com>2018-03-27 02:29:04 +0800
committerGitHub <noreply@github.com>2018-03-27 02:29:04 +0800
commitfe6f22ee69963ca682f74c8872806b2772f557ee (patch)
tree4212643a58a63a02a4465e70350c55759b4c79fd /ui/app/components/modals/export-private-key-modal.js
parenta94fbfdfab678afc0e02baec281038e463567ac1 (diff)
parentcfa2592d78b31ea3c5d056bf1344cfd5d5353f16 (diff)
downloadtangerine-wallet-browser-fe6f22ee69963ca682f74c8872806b2772f557ee.tar.gz
tangerine-wallet-browser-fe6f22ee69963ca682f74c8872806b2772f557ee.tar.zst
tangerine-wallet-browser-fe6f22ee69963ca682f74c8872806b2772f557ee.zip
Merge pull request #3721 from alextsg/cb-944
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'))
),
])