From fcfe927255b7af0dff33a8d112f090d30b855c24 Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Tue, 11 Jul 2023 22:53:41 -0300 Subject: [PATCH] changed separator --- src/frontend/src/components/ui/separator.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/components/ui/separator.tsx b/src/frontend/src/components/ui/separator.tsx index a770af987..1fa0287d8 100644 --- a/src/frontend/src/components/ui/separator.tsx +++ b/src/frontend/src/components/ui/separator.tsx @@ -17,7 +17,7 @@ const Separator = React.forwardRef< decorative={decorative} orientation={orientation} className={cn( - "shrink-0 bg-border", + "shrink-0 bg-ring/40", orientation === "horizontal" ? "h-[1px] w-full" : "h-full w-[1px]", className )}