Skip to content

Commit d27c493

Browse files
fix: padding for textareas (#912)
1 parent 0118e2f commit d27c493

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/form/object-field-renderer.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ export function ObjectFieldRenderer({ name, label, isOptional, schema }: Dynamic
2828
placeholder="Please paste your JSON"
2929
className={inputVariants({
3030
inputSize: "md",
31-
className: "h-auto w-full resize-none font-mono data-[error=true]:border-error-500"
31+
className:
32+
"h-auto w-full resize-none p-1 font-mono data-[error=true]:border-error-500"
3233
})}
3334
id={name}
3435
{...field}

0 commit comments

Comments
 (0)