aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/binary-renderer.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2017-03-17 03:22:09 +0800
committerDan Finlay <dan@danfinlay.com>2017-03-17 03:23:12 +0800
commit35c05607b091f6064be6802a2eb1023d837c9c85 (patch)
tree4ff4f574c6d349257bf92f73cc8234402635fad8 /ui/app/components/binary-renderer.js
parent00f1a2d78d01301f51157e9c8b8352dc0796d034 (diff)
downloadtangerine-wallet-browser-35c05607b091f6064be6802a2eb1023d837c9c85.tar.gz
tangerine-wallet-browser-35c05607b091f6064be6802a2eb1023d837c9c85.tar.zst
tangerine-wallet-browser-35c05607b091f6064be6802a2eb1023d837c9c85.zip
Improve personal_sign style
textarea was not resizing the way I'd expected, so made it permanently larger, to accomodate larger messages.
Diffstat (limited to 'ui/app/components/binary-renderer.js')
-rw-r--r--ui/app/components/binary-renderer.js21
1 files changed, 12 insertions, 9 deletions
diff --git a/ui/app/components/binary-renderer.js b/ui/app/components/binary-renderer.js
index a9d49b128..0b6a1f5c2 100644
--- a/ui/app/components/binary-renderer.js
+++ b/ui/app/components/binary-renderer.js
@@ -2,6 +2,7 @@ const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const ethUtil = require('ethereumjs-util')
+const extend = require('xtend')
module.exports = BinaryRenderer
@@ -12,20 +13,22 @@ function BinaryRenderer () {
BinaryRenderer.prototype.render = function () {
const props = this.props
- const { value } = props
+ const { value, style } = props
const text = this.hexToText(value)
+ const defaultStyle = extend({
+ width: '315px',
+ maxHeight: '210px',
+ resize: 'none',
+ border: 'none',
+ background: 'white',
+ padding: '3px',
+ }, style)
+
return (
h('textarea.font-small', {
readOnly: true,
- style: {
- width: '315px',
- maxHeight: '210px',
- resize: 'none',
- border: 'none',
- background: 'white',
- padding: '3px',
- },
+ style: defaultStyle,
defaultValue: text,
})
)