about summary refs log tree commit diff
path: root/src/components/forms
diff options
context:
space:
mode:
authorFrudrax Cheng <i@cynosura.one>2024-06-20 09:09:59 +0800
committerGitHub <noreply@github.com>2024-06-20 09:09:59 +0800
commite327bd01ec82af4a27390ae87094564af2e10294 (patch)
treef55faf055168a6a10bbe9b1d3ac6dc72a445466e /src/components/forms
parente170447cc66921997d4740c8e8c253eca48cd3ca (diff)
parent7d8fca56dc25b31b592692ad385105be42285c72 (diff)
downloadvoidsky-e327bd01ec82af4a27390ae87094564af2e10294.tar.zst
Merge branch 'bluesky-social:main' into zh
Diffstat (limited to 'src/components/forms')
-rw-r--r--src/components/forms/TextField.tsx7
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,
             }),