aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/accounts/import/private-key.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/accounts/import/private-key.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/accounts/import/private-key.js')
-rw-r--r--ui/app/accounts/import/private-key.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/accounts/import/private-key.js b/ui/app/accounts/import/private-key.js
index bc9e9384e..13c8da722 100644
--- a/ui/app/accounts/import/private-key.js
+++ b/ui/app/accounts/import/private-key.js
@@ -48,13 +48,13 @@ PrivateKeyImportView.prototype.render = function () {
h('div.new-account-import-form__buttons', {}, [
- h('button.new-account-create-form__button-cancel.allcaps', {
+ h('button.btn-secondary--lg.new-account-create-form__button', {
onClick: () => goHome(),
}, [
t('cancel'),
]),
- h('button.new-account-create-form__button-create.allcaps', {
+ h('button.btn-primary--lg.new-account-create-form__button', {
onClick: () => this.createNewKeychain(),
}, [
t('import'),