From 44ff75c7e152bea1bda07437787c03ca78ea69c5 Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Wed, 24 Aug 2016 15:43:00 -0700 Subject: Improve msg signing padding --- ui/app/components/pending-msg-details.js | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'ui/app/components/pending-msg-details.js') diff --git a/ui/app/components/pending-msg-details.js b/ui/app/components/pending-msg-details.js index adcec596e..36c8086ba 100644 --- a/ui/app/components/pending-msg-details.js +++ b/ui/app/components/pending-msg-details.js @@ -24,6 +24,9 @@ PendingMsgDetails.prototype.render = function () { return ( h('div', { key: msgData.id, + style: { + margin: '10px 20px', + }, }, [ // account that will sign @@ -36,11 +39,6 @@ PendingMsgDetails.prototype.render = function () { // message data h('.tx-data.flex-column.flex-justify-center.flex-grow.select-none', [ - h('.flex-row.flex-space-between', [ - h('label.font-small', 'DATE'), - h('span.font-small', readableDate(msgData.time)), - ]), - h('.flex-row.flex-space-between', [ h('label.font-small', 'MESSAGE'), h('span.font-small', msgParams.data), -- cgit v1.2.3 From 8c06463e80f1bd8a9aefadb0462a2aaf27e2a2be Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Wed, 24 Aug 2016 15:46:31 -0700 Subject: Linted --- ui/app/components/pending-msg-details.js | 1 - 1 file changed, 1 deletion(-) (limited to 'ui/app/components/pending-msg-details.js') diff --git a/ui/app/components/pending-msg-details.js b/ui/app/components/pending-msg-details.js index 36c8086ba..16308d121 100644 --- a/ui/app/components/pending-msg-details.js +++ b/ui/app/components/pending-msg-details.js @@ -3,7 +3,6 @@ const h = require('react-hyperscript') const inherits = require('util').inherits const AccountPanel = require('./account-panel') -const readableDate = require('../util').readableDate module.exports = PendingMsgDetails -- cgit v1.2.3