Skip to content

Commit

Permalink
Adjust spacings 3️⃣
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-lee committed Feb 16, 2024
1 parent 11a6160 commit 79b92aa
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/components/navigation/NavigationCategory.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,8 @@ export function NavigationCategory({ navItem, isRoot }: Props) {
role="list"
className={clsx([
"grid duration-200 border-l border-gray-100 dark:border-gray-800 lg:border-gray-200",
isCollapsed ? "grid-rows-[0fr]" : "grid-rows-[1fr] ",
!isCollapsed && "my-3",
isRoot && "my-3",
isCollapsed ? "grid-rows-[0fr]" : "grid-rows-[1fr]",
(!isCollapsed || isRoot) && "my-3",
])}
>
<div className="overflow-hidden flex flex-col gap-3">
Expand Down

0 comments on commit 79b92aa

Please sign in to comment.