aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/hex-as-decimal-input.js
diff options
context:
space:
mode:
authorKevin Serrano <kevgagser@gmail.com>2017-02-28 05:53:43 +0800
committerKevin Serrano <kevgagser@gmail.com>2017-02-28 05:53:43 +0800
commita77a5f0ab329433404893ff1280fb90ff2a12029 (patch)
tree364217139a952fd3f53ea37c5f24218ea34c53cb /ui/app/components/hex-as-decimal-input.js
parentc46f3d59de1201e800e7cee22a593d26dfb575bd (diff)
downloadtangerine-wallet-browser-a77a5f0ab329433404893ff1280fb90ff2a12029.tar.gz
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.js5
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)
}
-