diff options
Add 'customize' text to gas input.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/css/itcss/components/send.scss | 12 | ||||
-rw-r--r-- | ui/app/send.js | 4 |
2 files changed, 15 insertions, 1 deletions
diff --git a/ui/app/css/itcss/components/send.scss b/ui/app/css/itcss/components/send.scss index 7c84d3b9f..838e00b00 100644 --- a/ui/app/css/itcss/components/send.scss +++ b/ui/app/css/itcss/components/send.scss @@ -45,6 +45,7 @@ .send-screen-input-wrapper { width: 95%; + position: relative; } .send-screen-input { @@ -70,4 +71,13 @@ justify-content: space-between; } -.send-screen-bolt-icon {}
\ No newline at end of file +.send-screen-bolt-icon {} + +.send-screen-gas-input-customize { + position: absolute; + top: 30px; + right: 18px; + color: #3098DC; + font-size: 12px; + cursor: pointer; +}
\ No newline at end of file diff --git a/ui/app/send.js b/ui/app/send.js index ef4e92e26..c77bc49f9 100644 --- a/ui/app/send.js +++ b/ui/app/send.js @@ -216,6 +216,10 @@ SendTransactionScreen.prototype.render = function () { placeholder: '0', }, []), + h('div.send-screen-gas-input-customize', {}, [ + 'Customize' + ]), + ]), h('div.send-screen-input-wrapper', {}, [ |