rn: fix streaming key input color
This commit is contained in:
parent
a114d55fac
commit
1e346f10ab
|
@ -66,7 +66,10 @@ class StreamKeyForm extends AbstractStreamKeyForm<Props> {
|
|||
onChangeText = { this._onInputChange }
|
||||
placeholder = { t('liveStreaming.enterStreamKey') }
|
||||
placeholderTextColor = { PLACEHOLDER_COLOR }
|
||||
style = { styles.streamKeyInput }
|
||||
style = { [
|
||||
_dialogStyles.text,
|
||||
styles.streamKeyInput
|
||||
] }
|
||||
value = { this.props.value } />
|
||||
<View style = { styles.formFooter }>
|
||||
{
|
||||
|
|
|
@ -90,9 +90,10 @@ export default createStyleSheet({
|
|||
alignSelf: 'stretch',
|
||||
borderColor: ColorPalette.lightGrey,
|
||||
borderBottomWidth: 1,
|
||||
color: ColorPalette.white,
|
||||
fontSize: 14,
|
||||
height: 40,
|
||||
marginBottom: 5
|
||||
marginBottom: 5,
|
||||
textAlign: 'left'
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue