aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pending-tx/confirm-send-ether.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/components/pending-tx/confirm-send-ether.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/components/pending-tx/confirm-send-ether.js')
-rw-r--r--ui/app/components/pending-tx/confirm-send-ether.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/pending-tx/confirm-send-ether.js b/ui/app/components/pending-tx/confirm-send-ether.js
index 566224864..652300c94 100644
--- a/ui/app/components/pending-tx/confirm-send-ether.js
+++ b/ui/app/components/pending-tx/confirm-send-ether.js
@@ -219,7 +219,7 @@ ConfirmSendEther.prototype.render = function () {
// Main Send token Card
h('div.confirm-screen-wrapper.flex-column.flex-grow', [
h('h3.flex-center.confirm-screen-header', [
- h('button.confirm-screen-back-button', {
+ h('button.btn-clear.confirm-screen-back-button', {
onClick: () => editTransaction(txMeta),
}, 'EDIT'),
h('div.confirm-screen-title', 'Confirm Transaction'),
@@ -422,7 +422,7 @@ ConfirmSendEther.prototype.onSubmit = function (event) {
ConfirmSendEther.prototype.cancel = function (event, txMeta) {
event.preventDefault()
const { cancelTransaction } = this.props
-
+
cancelTransaction(txMeta)
}