Skip to content

Commit

Permalink
Merge pull request #3012 from ever-co/3006-bug-settings--fix-directio…
Browse files Browse the repository at this point in the history
…n-of-arrows

fix arrow direction in settings sidebar
  • Loading branch information
evereq authored Sep 10, 2024
2 parents ca133bd + e078486 commit 1855abc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apps/web/lib/components/sidebar-accordian.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ export const SidebarAccordian = ({ children, title, className, wrapperClassName,
</Text>

<ChevronUpIcon
className={`${open ? 'rotate-180 transform' : ''
} h-5 w-5 text-[#292D32] dark:text-white`}
className={`${
!open ? 'rotate-180 transform' : ''
} h-5 w-5 text-[#292D32] dark:text-white`}
/>
</Disclosure.Button>
{children && (
Expand Down

0 comments on commit 1855abc

Please sign in to comment.