Skip to content

Commit

Permalink
update padding and disable auto-capitalize in mnemonic input
Browse files Browse the repository at this point in the history
  • Loading branch information
KKA11010 committed Mar 29, 2024
1 parent 4b6c1ee commit d1dc48d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/screens/Restore/Recover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ export default function RecoverScreen({ navigation, route }: IRecoverPageProps)
onSubmitEditing={() => void handleBtnPress()}
autoFocus
ms={200}
style={[styles.multilineInput]}
style={styles.multilineInput}
autoCapitalize='none'
/>
</View>
<KeyboardAvoidingView
Expand Down Expand Up @@ -101,6 +102,9 @@ const styles = ScaledSheet.create({
multilineInput: {
minHeight: '80@s',
borderRadius: 25,
padding: '10@s'
paddingTop: '20@s',
paddingRight: '20@s',
paddingLeft: '20@s',
paddingBottom: '20@s',
}
})

0 comments on commit d1dc48d

Please sign in to comment.