aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pending-tx.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/pending-tx.js')
-rw-r--r--ui/app/components/pending-tx.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js
index 5d1fd4c16..77dba87ee 100644
--- a/ui/app/components/pending-tx.js
+++ b/ui/app/components/pending-tx.js
@@ -33,7 +33,11 @@ PendingTx.prototype.render = function () {
h(PendingTxDetails, state),
// send + cancel
- h('.flex-row.flex-space-around', [
+ h('.flex-row.flex-space-around', {
+ style: {
+ marginTop: '14px',
+ },
+ }, [
h('button', {
onClick: state.cancelTransaction,
}, 'Reject'),
@@ -41,9 +45,7 @@ PendingTx.prototype.render = function () {
onClick: state.sendTransaction,
}, 'Approve'),
]),
-
])
-
)
-
}
+