From de509736115d607fd93747a255cc2db39d0da663 Mon Sep 17 00:00:00 2001 From: Bram Suurd <78373894+BramSuurdje@users.noreply.github.com> Date: Sat, 4 May 2024 19:54:18 +0200 Subject: [PATCH] Update Separator component to use a thicker line for horizontal orientation --- components/ui/separator.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ui/separator.tsx b/components/ui/separator.tsx index 12d81c4..22dd1f0 100644 --- a/components/ui/separator.tsx +++ b/components/ui/separator.tsx @@ -19,7 +19,7 @@ const Separator = React.forwardRef< orientation={orientation} className={cn( "shrink-0 bg-border", - orientation === "horizontal" ? "h-[1px] w-full" : "h-full w-[1px]", + orientation === "horizontal" ? "h-[3px] w-full" : "h-full w-[1px]", className )} {...props}