increase size of input value
This commit is contained in:
parent
001ce65bf4
commit
de29d55f25
2 changed files with 7 additions and 3 deletions
|
@ -601,6 +601,7 @@ function WalletSendTip(props: Props) {
|
||||||
<FormField
|
<FormField
|
||||||
autoFocus
|
autoFocus
|
||||||
name="tip-input"
|
name="tip-input"
|
||||||
|
className="send__tip_input"
|
||||||
label={
|
label={
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
{__('Custom support amount')}{' '}
|
{__('Custom support amount')}{' '}
|
||||||
|
@ -620,6 +621,9 @@ function WalletSendTip(props: Props) {
|
||||||
min="0"
|
min="0"
|
||||||
step="any"
|
step="any"
|
||||||
type="number"
|
type="number"
|
||||||
|
style={{
|
||||||
|
width: activeTab === TAB_FIAT ? '99px' : '160px',
|
||||||
|
}}
|
||||||
placeholder="1.23"
|
placeholder="1.23"
|
||||||
value={customTipAmount}
|
value={customTipAmount}
|
||||||
onChange={(event) => handleCustomPriceChange(event)}
|
onChange={(event) => handleCustomPriceChange(event)}
|
||||||
|
|
|
@ -404,9 +404,9 @@ fieldset-group {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-field--price-amount {
|
//.form-field--price-amount {
|
||||||
max-width: 6em;
|
// max-width: 6em;
|
||||||
}
|
//}
|
||||||
|
|
||||||
.form-field--price-amount--auto {
|
.form-field--price-amount--auto {
|
||||||
width: auto;
|
width: auto;
|
||||||
|
|
Loading…
Reference in a new issue