don't zoom into text on mobile

This commit is contained in:
Josh Hawkins 2026-02-07 09:42:24 -06:00
parent 6836a9a291
commit 412eaf983a
2 changed files with 2 additions and 0 deletions

View File

@ -23,6 +23,7 @@ export function TextWidget(props: WidgetProps) {
return (
<Input
id={id}
className="text-md"
type="text"
value={value ?? ""}
disabled={disabled || readonly}

View File

@ -23,6 +23,7 @@ export function TextareaWidget(props: WidgetProps) {
return (
<Textarea
id={id}
className="text-md"
value={value ?? ""}
disabled={disabled || readonly}
placeholder={placeholder || (options.placeholder as string) || ""}