Skip to content

Commit

Permalink
Fix menu dot bg
Browse files Browse the repository at this point in the history
  • Loading branch information
rushi committed Aug 27, 2023
1 parent cd0bce5 commit 646c6e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Sidebar/Sidebar.Link.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const SidebarLink = ({ isActive = false, icon: Icon, children, isSubMenuI
{...rest}
>
{isSubMenuItem ? (
<Dot className={clsx("mr-3", { "bg-white": isActive, "bg-gray": !isActive })} />
<Dot className={clsx("mr-3", { "!bg-white": isActive, "!bg-gray": !isActive })} />
) : (
<Icon className="h-5 w-5 xl:mr-3" />
)}
Expand Down

0 comments on commit 646c6e1

Please sign in to comment.