Skip to content

Commit

Permalink
Adjust Search component TextInput height for improved usability
Browse files Browse the repository at this point in the history
  • Loading branch information
codeAbinash committed Jan 28, 2025
1 parent 1fe28e1 commit 0a8cd50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function Search({ onChangeText, value, ...all }: TextInputProps)
<TextInput
ref={ref}
className='flex-1 p-3 text-zinc-800 dark:text-zinc-200'
style={[SEMIBOLD, { fontSize: 13, marginBottom: 1 }]}
style={[SEMIBOLD, { fontSize: 13, marginBottom: 1, height: 40 }]}
placeholderTextColor={scheme === 'dark' ? Colors.zinc[500] : Colors.zinc[400]}
cursorColor={Colors.accent}
selectionColor={Colors.accent + '55'}
Expand Down

0 comments on commit 0a8cd50

Please sign in to comment.