Skip to content

Commit

Permalink
fix: rename border-secondary to border-muted
Browse files Browse the repository at this point in the history
  • Loading branch information
BrickheadJohnny committed Jul 8, 2024
1 parent 8179ce0 commit bf9bb68
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
--success-foreground: 0 0% 100%;

--border: 240 6% 90%;
--border-secondary: 240 6% 94%;
--border-muted: 240 6% 94%;
--input: var(--border);
--ring: 224 71.4% 4.1%;

Expand Down Expand Up @@ -104,7 +104,7 @@
--success-foreground: 0 0% 100%;

--border: 240 3% 38%;
--border-secondary: 240 3% 28%;
--border-muted: 240 3% 28%;
--input: var(--border);
--ring: 240 0% 45%;

Expand Down
2 changes: 1 addition & 1 deletion src/v2/components/ui/DropdownMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ const DropdownMenuSeparator = forwardRef<
>(({ className, ...props }, ref) => (
<DropdownMenuPrimitive.Separator
ref={ref}
className={cn("h-px bg-border-secondary", className)}
className={cn("h-px bg-border-muted", className)}
{...props}
/>
))
Expand Down
2 changes: 1 addition & 1 deletion tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const config = {
},
colors: {
border: "hsl(var(--border))",
"border-secondary": "hsl(var(--border-secondary))",
"border-muted": "hsl(var(--border-muted))",
input: "hsl(var(--input))",
ring: "hsl(var(--ring))",
background: "hsl(var(--background))",
Expand Down

0 comments on commit bf9bb68

Please sign in to comment.