Skip to content

Commit

Permalink
fix: Proper text sizing in the availability accordion headers
Browse files Browse the repository at this point in the history
  • Loading branch information
beverloo committed Jan 13, 2025
1 parent 93e9a61 commit 4a032d7
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,9 @@ export function ApplicationAvailability(props: ApplicationAvailabilityProps) {
</Grid>
<Accordion disableGutters elevation={0} square sx={kStyles.section}>
<AccordionSummary expandIcon={ <ExpandMoreIcon /> } sx={kStyles.sectionHeader}>
Events they plan to attend
<Typography>
Events they plan to attend
</Typography>
<Typography sx={{ color: 'text.disabled', pl: 1 }}>
({numberOfEventsToAttend})
</Typography>
Expand All @@ -273,7 +275,9 @@ export function ApplicationAvailability(props: ApplicationAvailabilityProps) {
</Accordion>
<Accordion disableGutters elevation={0} square sx={kStyles.section}>
<AccordionSummary expandIcon={ <ExpandMoreIcon /> } sx={kStyles.sectionHeader}>
Availability exceptions
<Typography>
Availability exceptions
</Typography>
<Typography sx={{ color: 'text.disabled', pl: 1 }}>
({timeslots.length})
</Typography>
Expand Down

0 comments on commit 4a032d7

Please sign in to comment.