mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-17 21:58:22 +03:00
don't zoom into text on mobile
This commit is contained in:
parent
6836a9a291
commit
412eaf983a
@ -23,6 +23,7 @@ export function TextWidget(props: WidgetProps) {
|
|||||||
return (
|
return (
|
||||||
<Input
|
<Input
|
||||||
id={id}
|
id={id}
|
||||||
|
className="text-md"
|
||||||
type="text"
|
type="text"
|
||||||
value={value ?? ""}
|
value={value ?? ""}
|
||||||
disabled={disabled || readonly}
|
disabled={disabled || readonly}
|
||||||
|
|||||||
@ -23,6 +23,7 @@ export function TextareaWidget(props: WidgetProps) {
|
|||||||
return (
|
return (
|
||||||
<Textarea
|
<Textarea
|
||||||
id={id}
|
id={id}
|
||||||
|
className="text-md"
|
||||||
value={value ?? ""}
|
value={value ?? ""}
|
||||||
disabled={disabled || readonly}
|
disabled={disabled || readonly}
|
||||||
placeholder={placeholder || (options.placeholder as string) || ""}
|
placeholder={placeholder || (options.placeholder as string) || ""}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user