Skip to content

Commit 5833d43

Browse files
committed
style(mobile/forms): drop native TextInput padding reset on Field
The explicit padding: 0 / includeFontPadding: false override was over-correcting the input height, making it feel cramped against the button. Letting RN use its defaults reads better.
1 parent 84af359 commit 5833d43

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/mobile/components/ui/field.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const Field = forwardRef<TextInput, Props>(function Field(
2121
placeholderTextColor={colors.muted}
2222
multiline={multiline}
2323
className="flex-1 font-sans text-body text-ink"
24-
style={[{ padding: 0, margin: 0, includeFontPadding: false }, style]}
24+
style={[style]}
2525
{...props}
2626
/>
2727
{trailing}

0 commit comments

Comments
 (0)