diff options
author | Frudrax Cheng <i@cynosura.one> | 2024-06-20 09:09:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-20 09:09:59 +0800 |
commit | e327bd01ec82af4a27390ae87094564af2e10294 (patch) | |
tree | f55faf055168a6a10bbe9b1d3ac6dc72a445466e /src/components/forms | |
parent | e170447cc66921997d4740c8e8c253eca48cd3ca (diff) | |
parent | 7d8fca56dc25b31b592692ad385105be42285c72 (diff) | |
download | voidsky-e327bd01ec82af4a27390ae87094564af2e10294.tar.zst |
Merge branch 'bluesky-social:main' into zh
Diffstat (limited to 'src/components/forms')
-rw-r--r-- | src/components/forms/TextField.tsx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/components/forms/TextField.tsx b/src/components/forms/TextField.tsx index 73a660ea6..f7a827b49 100644 --- a/src/components/forms/TextField.tsx +++ b/src/components/forms/TextField.tsx @@ -196,6 +196,13 @@ export function createInput(Component: typeof TextInput) { textAlignVertical: rest.multiline ? 'top' : undefined, minHeight: rest.multiline ? 80 : undefined, }, + // fix for autofill styles covering border + web({ + paddingTop: 12, + paddingBottom: 12, + marginTop: 2, + marginBottom: 2, + }), android({ paddingBottom: 16, }), |