FIX: Font-Color in Bump-Fee Input Field "Custom" is not adapted for dark mode #1439

This commit is contained in:
marcosrdz 2020-08-04 21:15:07 -04:00 committed by Overtorment
parent 5f32fafd76
commit 81ab3e5faf
2 changed files with 5 additions and 1 deletions

View file

@ -2195,6 +2195,7 @@ export class BlueReplaceFeeSuggestions extends Component {
minHeight: 33,
maxWidth: 100,
minWidth: 44,
color: '#81868e',
backgroundColor: BlueCurrentTheme.colors.inputBackgroundColor,
textAlign: 'right',
}}

View file

@ -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}