mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-22 23:08:07 +01:00
FIX: Font-Color in Bump-Fee Input Field "Custom" is not adapted for dark mode #1439
This commit is contained in:
parent
5f32fafd76
commit
81ab3e5faf
2 changed files with 5 additions and 1 deletions
|
@ -2195,6 +2195,7 @@ export class BlueReplaceFeeSuggestions extends Component {
|
|||
minHeight: 33,
|
||||
maxWidth: 100,
|
||||
minWidth: 44,
|
||||
color: '#81868e',
|
||||
backgroundColor: BlueCurrentTheme.colors.inputBackgroundColor,
|
||||
textAlign: 'right',
|
||||
}}
|
||||
|
|
|
@ -242,7 +242,10 @@ export default class CPFP extends Component {
|
|||
<BlueCard style={styles.center}>
|
||||
<BlueText>{text}</BlueText>
|
||||
<BlueSpacing20 />
|
||||
<BlueReplaceFeeSuggestions onFeeSelected={fee => this.setState({ newFeeRate: fee })} transactionMinimum={this.state.feeRate} />
|
||||
<BlueReplaceFeeSuggestions
|
||||
onFeeSelected={fee => this.setState({ newFeeRate: fee })}
|
||||
transactionMinimum={this.state.feeRate + 1}
|
||||
/>
|
||||
<BlueSpacing />
|
||||
<BlueButton
|
||||
disabled={this.state.newFeeRate <= this.state.feeRate}
|
||||
|
|
Loading…
Add table
Reference in a new issue