From 0c0a95cac508eeb0513c04679be74314dec18a5c Mon Sep 17 00:00:00 2001 From: JamesS <47437340+splinesreticulating@users.noreply.github.com> Date: Mon, 30 Jun 2025 14:47:19 -0700 Subject: [PATCH] fix: prevent ios auto zoom by increasing input font --- src/lib/components/SettingsForm.svelte | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/lib/components/SettingsForm.svelte b/src/lib/components/SettingsForm.svelte index f9775e9..bafd4e3 100644 --- a/src/lib/components/SettingsForm.svelte +++ b/src/lib/components/SettingsForm.svelte @@ -30,15 +30,6 @@ } }) - // Handle range input changes - function handleRangeChange(key: string, value: string) { - const num = parseFloat(value) - const range = rangeSettings[key] - if (!isNaN(num) && num >= range.min && num <= range.max) { - settingValues = { ...settingValues, [key]: value } - } - } - // Group settings by provider const settingsGroups = $derived({ general: settings.filter((s: { key: string; value: string; description: string }) => @@ -219,7 +210,7 @@ padding: 0.6rem 0.8rem; box-sizing: border-box; font-family: inherit; - font-size: 0.95rem; + font-size: 1rem; width: 100%; color: var(--text); transition: