Skip to content

Commit

Permalink
Fix Sidebar Minimal Collapsibles #11
Browse files Browse the repository at this point in the history
  • Loading branch information
Glen Miracle authored and Glen Miracle committed Jul 4, 2024
1 parent f74e08d commit 43f953d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/components/atoms/collapsible-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const CollapsibleItem = ({
<Icon className="size-6" />
</TooltipTrigger>
<TooltipContent className="w-auto bg-white z-999">
<p className="text-black text-md ">{label}</p>
<p className="text-slate-700 text-md ">{label}</p>
</TooltipContent>
</PopoverTrigger>
</Tooltip>
Expand Down
2 changes: 1 addition & 1 deletion app/components/atoms/nav-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const NavItem = ({
</TooltipTrigger>
{
<TooltipContent className="w-auto bg-white z-999">
<p className="text-black text-md ">{label}</p>
<p className="text-slate-700 text-md ">{label}</p>
</TooltipContent>
}
{minimal ? "" : <p>{label}</p>}
Expand Down

0 comments on commit 43f953d

Please sign in to comment.