Skip to content

Commit

Permalink
Fix missing min-width on accordion icons
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasr8 committed Aug 20, 2024
1 parent 01f9244 commit 8449a35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/participant/ParticipantPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -372,8 +372,8 @@ function RegistrationSection(section: SectionProps) {
>
<Typography variant="h4" className="flex w-full justify-between">
{title}
{isOpen && <ChevronDownIcon className="h-6 w-6" />}
{!isOpen && <ChevronLeftIcon className="h-6 w-6" />}
{isOpen && <ChevronDownIcon className="h-6 w-6 min-w-6" />}
{!isOpen && <ChevronLeftIcon className="h-6 w-6 min-w-6" />}
</Typography>
</button>
</div>
Expand Down

0 comments on commit 8449a35

Please sign in to comment.