aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/accounts/import
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-03-27 03:21:02 +0800
committerDan <danjm.com@gmail.com>2018-03-27 03:21:02 +0800
commit1779cff65b83a80de618ad350da1e5f1dee63f07 (patch)
tree0a0c498adadb4010bd2c2748ade61f6923520847 /ui/app/accounts/import
parenta30b5ccd951e9a7b90cf7cd3a22c72cca1520275 (diff)
parent4efb1c6b491901cbb42ef27a4c6c55814f24d764 (diff)
downloadtangerine-wallet-browser-1779cff65b83a80de618ad350da1e5f1dee63f07.tar.gz
tangerine-wallet-browser-1779cff65b83a80de618ad350da1e5f1dee63f07.tar.zst
tangerine-wallet-browser-1779cff65b83a80de618ad350da1e5f1dee63f07.zip
Merge branch 'master' into i3326-addtokenscreendesignupdate
Diffstat (limited to 'ui/app/accounts/import')
-rw-r--r--ui/app/accounts/import/json.js4
-rw-r--r--ui/app/accounts/import/private-key.js4
2 files changed, 4 insertions, 4 deletions
diff --git a/ui/app/accounts/import/json.js b/ui/app/accounts/import/json.js
index fa25168f1..eeba73e77 100644
--- a/ui/app/accounts/import/json.js
+++ b/ui/app/accounts/import/json.js
@@ -50,13 +50,13 @@ class JsonImportSubview extends Component {
h('div.new-account-create-form__buttons', {}, [
- h('button.new-account-create-form__button-cancel', {
+ h('button.btn-secondary.new-account-create-form__button', {
onClick: () => this.props.goHome(),
}, [
t('cancel'),
]),
- h('button.new-account-create-form__button-create', {
+ h('button.btn-primary.new-account-create-form__button', {
onClick: () => this.createNewKeychain(),
}, [
t('import'),
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'),