fix(tool-input): increase gap between SubBlock params for visual clarity

SubBlock's internal gap (10px between label and input) matched the
between-parameter gap (10px), making them indistinguishable. Increase
the between-parameter gap to 14px so consecutive parameters are
visually distinct, matching the separation seen in ParameterWithLabel.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
waleed
2026-02-12 11:54:45 -08:00
parent f707636162
commit 837a13ec4f

View File

@@ -1864,7 +1864,7 @@ export const ToolInput = memo(function ToolInput({
})
return (
<div className='flex flex-col gap-[10px] pt-[4px]'>{renderedElements}</div>
<div className='flex flex-col gap-[14px] pt-[4px]'>{renderedElements}</div>
)
}