aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/send-v2.js
diff options
context:
space:
mode:
authorChi Kei Chan <chikeichan@gmail.com>2018-01-13 05:41:46 +0800
committerGitHub <noreply@github.com>2018-01-13 05:41:46 +0800
commit89a8267fe70b62739043c09e855d6aa97af8769e (patch)
tree5f360e4a65a0768817913e99840e3705439432e2 /ui/app/send-v2.js
parentbdcee058dc278c46c828f376476f121417481385 (diff)
parent613465fe965d41e0f0936aec499a4691c0191963 (diff)
downloadtangerine-wallet-browser-89a8267fe70b62739043c09e855d6aa97af8769e.tar.gz
tangerine-wallet-browser-89a8267fe70b62739043c09e855d6aa97af8769e.tar.zst
tangerine-wallet-browser-89a8267fe70b62739043c09e855d6aa97af8769e.zip
Merge pull request #2928 from alextsg/cb-388
[NewUI] Update main view styling
Diffstat (limited to 'ui/app/send-v2.js')
-rw-r--r--ui/app/send-v2.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/app/send-v2.js b/ui/app/send-v2.js
index 7c9b6dbc6..ca73fa5ea 100644
--- a/ui/app/send-v2.js
+++ b/ui/app/send-v2.js
@@ -516,16 +516,16 @@ SendTransactionScreen.prototype.renderFooter = function () {
} = this.props
const noErrors = !amountError && toError === null
- const errorClass = noErrors ? '' : '__disabled'
return h('div.send-v2__footer', [
- h('button.send-v2__cancel-btn', {
+ h('button.btn-cancel.send-v2__cancel-btn', {
onClick: () => {
clearSend()
goHome()
},
}, 'Cancel'),
- h(`button.send-v2__next-btn${errorClass}`, {
+ h('button.btn-clear.send-v2__next-btn', {
+ disabled: !noErrors,
onClick: event => this.onSubmit(event),
}, 'Next'),
])