Skip to content

Commit cda4e72

Browse files
committed
style(form): replace flex gap utility with space-y for consistent spacing
1 parent 20bc112 commit cda4e72

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dashboard/src/components/ui/form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const FormItem = React.forwardRef<HTMLDivElement, React.HTMLAttributes<HTMLDivEl
5757

5858
return (
5959
<FormItemContext.Provider value={{ id }}>
60-
<div ref={ref} className={cn('flex flex-col gap-2.5', className)} {...props} />
60+
<div ref={ref} className={cn('space-y-2', className)} {...props} />
6161
</FormItemContext.Provider>
6262
)
6363
})

0 commit comments

Comments
 (0)