diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-06-26 17:26:40 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-26 17:26:40 +0300 |
commit | ad54ec8ef9bc129c6517131970b70fce4488c798 (patch) | |
tree | 2d53380aaa1f8c4e068c1b732ba10bb4ec3192cc /src/components/forms | |
parent | e5f9377a691ef899e755d9611eafa49cbce8ec46 (diff) | |
download | voidsky-ad54ec8ef9bc129c6517131970b70fce4488c798.tar.zst |
android paper text input padding (#8570)
Diffstat (limited to 'src/components/forms')
-rw-r--r-- | src/components/forms/TextField.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
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, |