diff options
author | Dan <danjm.com@gmail.com> | 2018-06-23 00:13:39 +0800 |
---|---|---|
committer | Dan <danjm.com@gmail.com> | 2018-06-29 08:15:04 +0800 |
commit | d5133fb429c313f7bed24e3740eddb1350810b16 (patch) | |
tree | 7c6c7c5e80838f3921c33282e7510f7717d31ffc /ui | |
parent | 9f5ee94b6937c741684de5e70ac0f9fea5f50226 (diff) | |
download | tangerine-wallet-browser-d5133fb429c313f7bed24e3740eddb1350810b16.tar.gz tangerine-wallet-browser-d5133fb429c313f7bed24e3740eddb1350810b16.tar.zst tangerine-wallet-browser-d5133fb429c313f7bed24e3740eddb1350810b16.zip |
Fix issues with scrollbar in currency display.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/components/send/currency-display.js | 2 | ||||
-rw-r--r-- | ui/app/css/itcss/components/currency-display.scss | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/ui/app/components/send/currency-display.js b/ui/app/components/send/currency-display.js index 9c8ce0044..e410bc070 100644 --- a/ui/app/components/send/currency-display.js +++ b/ui/app/components/send/currency-display.js @@ -149,7 +149,7 @@ CurrencyDisplay.prototype.render = function () { } : {}), ref: input => { this.currencyInput = input }, style: { - minWidth: this.getInputWidth(valueToRender, readOnly), + width: this.getInputWidth(valueToRender, readOnly), }, min: 0, }), diff --git a/ui/app/css/itcss/components/currency-display.scss b/ui/app/css/itcss/components/currency-display.scss index 3614aa868..5f380475a 100644 --- a/ui/app/css/itcss/components/currency-display.scss +++ b/ui/app/css/itcss/components/currency-display.scss @@ -48,7 +48,6 @@ display: flex; flex: 1; max-width: 100%; - overflow-x: scroll; input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; |