Skip to content

Commit

Permalink
Fix spacing between category item and menu in Sidebar (#1172)
Browse files Browse the repository at this point in the history
  • Loading branch information
dani-moreno authored Feb 11, 2025
1 parent b3fd607 commit f8a2b78
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/experimental/Navigation/Sidebar/Menu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,11 @@ const CategoryItem = ({ category }: { category: MenuCategory }) => {
}

return (
<Collapsible open={isOpen} onOpenChange={setIsOpen}>
<Collapsible
open={isOpen}
onOpenChange={setIsOpen}
className="flex w-full flex-col gap-0.5"
>
<CollapsibleTrigger
className={cn(
"flex w-full cursor-pointer items-center gap-1 rounded px-1.5 py-2 text-sm font-medium text-f1-foreground-secondary hover:bg-f1-background-secondary",
Expand Down

0 comments on commit f8a2b78

Please sign in to comment.