diff options
author | Kevin Serrano <kevgagser@gmail.com> | 2017-02-28 05:53:43 +0800 |
---|---|---|
committer | Kevin Serrano <kevgagser@gmail.com> | 2017-02-28 05:53:43 +0800 |
commit | a77a5f0ab329433404893ff1280fb90ff2a12029 (patch) | |
tree | 364217139a952fd3f53ea37c5f24218ea34c53cb /ui/app/components/hex-as-decimal-input.js | |
parent | c46f3d59de1201e800e7cee22a593d26dfb575bd (diff) | |
download | tangerine-wallet-browser-a77a5f0ab329433404893ff1280fb90ff2a12029.tar tangerine-wallet-browser-a77a5f0ab329433404893ff1280fb90ff2a12029.tar.gz tangerine-wallet-browser-a77a5f0ab329433404893ff1280fb90ff2a12029.tar.bz2 tangerine-wallet-browser-a77a5f0ab329433404893ff1280fb90ff2a12029.tar.lz tangerine-wallet-browser-a77a5f0ab329433404893ff1280fb90ff2a12029.tar.xz tangerine-wallet-browser-a77a5f0ab329433404893ff1280fb90ff2a12029.tar.zst tangerine-wallet-browser-a77a5f0ab329433404893ff1280fb90ff2a12029.zip |
Move input boxes into table and into details component.
Diffstat (limited to 'ui/app/components/hex-as-decimal-input.js')
-rw-r--r-- | ui/app/components/hex-as-decimal-input.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ui/app/components/hex-as-decimal-input.js b/ui/app/components/hex-as-decimal-input.js index 4d3105b8d..34f628f7f 100644 --- a/ui/app/components/hex-as-decimal-input.js +++ b/ui/app/components/hex-as-decimal-input.js @@ -27,6 +27,10 @@ HexAsDecimalInput.prototype.render = function () { return ( h('input', { + style: { + display: 'block', + textAlign: 'right', + }, value: decimalValue, onChange: (event) => { const hexString = hexify(event.target.value) @@ -46,4 +50,3 @@ function decimalize (input) { const inputBN = new BN(strippedInput, 'hex') return inputBN.toString(10) } - |