mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Improvement: Increase click area for arrows (#5264)
This commit is contained in:
parent
9ad3fa80f3
commit
cd28dbb1d5
@ -66,13 +66,16 @@ InputNumber.prototype.render = function () {
|
||||
}),
|
||||
h('span.gas-tooltip-input-detail', {}, [unitLabel]),
|
||||
h('div.gas-tooltip-input-arrows', {}, [
|
||||
h('i.fa.fa-angle-up', {
|
||||
h('div.gas-tooltip-input-arrow-wrapper', {
|
||||
onClick: () => this.setValue(addCurrencies(value, step, { toNumericBase: 'dec' })),
|
||||
}),
|
||||
h('i.fa.fa-angle-down', {
|
||||
style: { cursor: 'pointer' },
|
||||
}, [
|
||||
h('i.fa.fa-angle-up'),
|
||||
]),
|
||||
h('div.gas-tooltip-input-arrow-wrapper', {
|
||||
onClick: () => this.setValue(subtractCurrencies(value, step, { toNumericBase: 'dec' })),
|
||||
}),
|
||||
}, [
|
||||
h('i.fa.fa-angle-down'),
|
||||
]),
|
||||
]),
|
||||
])
|
||||
}
|
||||
|
@ -888,12 +888,21 @@
|
||||
font-size: 18px;
|
||||
color: $tundora;
|
||||
right: 0px;
|
||||
padding: 1px 4px;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.gas-tooltip-input-arrow-wrapper {
|
||||
align-items: center;
|
||||
align-self: stretch;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-grow: 1;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
input[type="number"]::-webkit-inner-spin-button {
|
||||
-webkit-appearance: none;
|
||||
display: none;
|
||||
|
Loading…
Reference in New Issue
Block a user