Skip to content

Commit

Permalink
fix: set border color explicitely
Browse files Browse the repository at this point in the history
  • Loading branch information
chronark committed Dec 11, 2024
1 parent 5fafbbe commit 5a95fcd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/dashboard/components/dashboard/empty-placeholder.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export function EmptyPlaceholder({
return (
<div
className={cn(
"animate-in relative fade-in-50 flex min-h-[400px] flex-col items-center justify-center rounded-md border border-dashed p-8 text-center",
"animate-in relative fade-in-50 flex min-h-[400px] flex-col items-center justify-center rounded-md border border-dashed border-border p-8 text-center",
className,
)}
{...props}
Expand Down
2 changes: 1 addition & 1 deletion apps/dashboard/components/ui/card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const CardFooter = React.forwardRef<HTMLDivElement, React.HTMLAttributes<HTMLDiv
({ className, ...props }, ref) => (
<div
ref={ref}
className={cn(" flex items-center px-6 py-3 mt-3 border-t", className)}
className={cn(" flex items-center px-6 py-3 mt-3 border-t border-border", className)}
{...props}
/>
),
Expand Down

0 comments on commit 5a95fcd

Please sign in to comment.