Skip to content

Commit b65768b

Browse files
waleedlatif1claude
andcommitted
fix(tool-input): increase top padding of expanded tool body
Bump the expanded tool body container's top padding from 8px to 12px for more breathing room between the header bar and the first parameter. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 3e17627 commit b65768b

File tree

1 file changed

+1
-1
lines changed
  • apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/tool-input

1 file changed

+1
-1
lines changed

apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/tool-input/tool-input.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1716,7 +1716,7 @@ export const ToolInput = memo(function ToolInput({
17161716
</div>
17171717

17181718
{!isCustomTool && isExpandedForDisplay && (
1719-
<div className='flex flex-col gap-[10px] overflow-visible rounded-b-[4px] border-[var(--border-1)] border-t bg-[var(--surface-2)] px-[8px] py-[8px]'>
1719+
<div className='flex flex-col gap-[10px] overflow-visible rounded-b-[4px] border-[var(--border-1)] border-t bg-[var(--surface-2)] px-[8px] pt-[12px] pb-[8px]'>
17201720
{/* Operation dropdown for tools with multiple operations */}
17211721
{(() => {
17221722
const hasOperations = hasMultipleOperations(tool.type)

0 commit comments

Comments
 (0)