From ad54ec8ef9bc129c6517131970b70fce4488c798 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Thu, 26 Jun 2025 17:26:40 +0300 Subject: android paper text input padding (#8570) --- src/components/forms/TextField.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/components/forms/TextField.tsx') diff --git a/src/components/forms/TextField.tsx b/src/components/forms/TextField.tsx index ea7f8e94e..9b7ada319 100644 --- a/src/components/forms/TextField.tsx +++ b/src/components/forms/TextField.tsx @@ -196,7 +196,8 @@ export function createInput(Component: typeof TextInput) { minWidth: 0, }, ios({paddingTop: 12, paddingBottom: 13}), - android(a.py_md), + // Needs to be sm on Paper, md on Fabric for some godforsaken reason -sfn + android(a.py_sm), // fix for autofill styles covering border web({ paddingTop: 10, -- cgit 1.4.1