Skip to content

Commit ceaf183

Browse files
authored
Merge pull request Expensify#65434 from Krishna2323/krishna2323/issue/65318
fix: Text input has transparent backround on sign in screen.
2 parents e5b6c9c + 9839476 commit ceaf183

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/components/EmojiPicker/EmojiPickerMenu/index.native.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ function EmojiPickerMenu({onEmojiSelected, activeEmoji}: EmojiPickerMenuProps, r
120120

121121
return (
122122
<View style={[styles.emojiPickerContainer, StyleUtils.getEmojiPickerStyle(shouldUseNarrowLayout)]}>
123-
<View style={[styles.ph4, styles.pb1, styles.pt2]}>
123+
<View style={[styles.p4, styles.pb3]}>
124124
<TextInput
125125
label={translate('common.search')}
126126
accessibilityLabel={translate('common.search')}

src/components/MagicCodeInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ function MagicCodeInput(
419419
inputStyle={[styles.inputTransparent]}
420420
role={CONST.ROLE.PRESENTATION}
421421
style={[styles.inputTransparent]}
422-
textInputContainerStyles={[styles.borderNone]}
422+
textInputContainerStyles={[styles.borderNone, styles.bgTransparent]}
423423
testID={testID}
424424
/>
425425
</View>

src/styles/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1301,7 +1301,7 @@ const styles = (theme: ThemeColors) =>
13011301
flex: 1,
13021302
justifyContent: 'center',
13031303
height: '100%',
1304-
backgroundColor: 'transparent',
1304+
backgroundColor: theme.appBG,
13051305
overflow: 'hidden',
13061306
borderWidth: 1,
13071307
padding: 8,

0 commit comments

Comments
 (0)