File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed
libs/remix-ui/run-tab/src/lib/components Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ export function GasLimitUI(props: GasPriceProps) {
51
51
< FormattedMessage id = "udapp.gasLimitAuto" />
52
52
</ label >
53
53
</ div >
54
- < div className = "d-flex pb-1 custom-control custom-radio" >
54
+ < div className = "d-flex custom-control custom-radio align-items-baseline " >
55
55
< input
56
56
className = "custom-control-input"
57
57
type = "radio"
@@ -61,20 +61,20 @@ export function GasLimitUI(props: GasPriceProps) {
61
61
checked = { ! gasLimitAuto }
62
62
id = "glManualConfig"
63
63
/>
64
- < label className = "mb-1 w-100 form-check-label custom-control-label" htmlFor = "glManualConfig" data-id = "glManualConfiguration" >
64
+ < label className = "mb-1 w-50 form-check-label custom-control-label" htmlFor = "glManualConfig" data-id = "glManualConfiguration" >
65
65
< FormattedMessage id = "udapp.gasLimitManual" />
66
- < CustomTooltip placement = { 'right' } tooltipClasses = "text-nowrap" tooltipId = "remixGasPriceTooltip" tooltipText = { < FormattedMessage id = "udapp.tooltipText4" /> } >
67
- < input
68
- type = "number"
69
- ref = { inputComponent }
70
- disabled = { gasLimitAuto }
71
- className = "mt-2 form-control"
72
- id = "gasLimit"
73
- value = { props . gasLimit === 0 ? currentGasLimit . current : props . gasLimit }
74
- onChange = { handleGasLimit }
75
- />
76
- </ CustomTooltip >
77
66
</ label >
67
+ < CustomTooltip placement = { 'right' } tooltipClasses = "text-nowrap" tooltipId = "remixGasPriceTooltip" tooltipText = { < FormattedMessage id = "udapp.tooltipText4" /> } >
68
+ < input
69
+ type = "number"
70
+ ref = { inputComponent }
71
+ disabled = { gasLimitAuto }
72
+ className = "form-control w-100 float-right"
73
+ id = "gasLimit"
74
+ value = { props . gasLimit === 0 ? currentGasLimit . current : props . gasLimit }
75
+ onChange = { handleGasLimit }
76
+ />
77
+ </ CustomTooltip >
78
78
</ div >
79
79
</ div >
80
80
</ div >
You can’t perform that action at this time.
0 commit comments