aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pending-msg.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2017-08-18 06:35:17 +0800
committerDan Finlay <dan@danfinlay.com>2017-08-18 06:35:17 +0800
commit98bedfabf932ff75445769898f8f97cf9f6e7f75 (patch)
tree3c59c1a103c3411c50cdd707cf8ec520895429d5 /ui/app/components/pending-msg.js
parent5f9862c89e2357a26384e1b48ab34ba052e967a4 (diff)
downloadtangerine-wallet-browser-98bedfabf932ff75445769898f8f97cf9f6e7f75.tar.gz
tangerine-wallet-browser-98bedfabf932ff75445769898f8f97cf9f6e7f75.tar.zst
tangerine-wallet-browser-98bedfabf932ff75445769898f8f97cf9f6e7f75.zip
Fix eth sign formatting
Diffstat (limited to 'ui/app/components/pending-msg.js')
-rw-r--r--ui/app/components/pending-msg.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/ui/app/components/pending-msg.js b/ui/app/components/pending-msg.js
index b2cac164a..b7133cda8 100644
--- a/ui/app/components/pending-msg.js
+++ b/ui/app/components/pending-msg.js
@@ -18,6 +18,9 @@ PendingMsg.prototype.render = function () {
h('div', {
key: msgData.id,
+ style: {
+ maxWidth: '350px',
+ },
}, [
// header
@@ -35,7 +38,7 @@ PendingMsg.prototype.render = function () {
}, `Signing this message can have
dangerous side effects. Only sign messages from
sites you fully trust with your entire account.
- This will be fixed in a future version.`),
+ This dangerous method will be removed in a future version.`),
// message details
h(PendingTxDetails, state),