Skip to content

Commit

Permalink
(fix) font size for model details toggle was too big
Browse files Browse the repository at this point in the history
  • Loading branch information
EMaslowskiQ committed May 10, 2024
1 parent 6a174da commit ff7bc91
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -508,11 +508,11 @@ function Model(props: ModelProps): React.ReactElement {
</Box>
<IconButton
className={classes.modelDetailsContainer}
style={{ marginTop: '1rem' }}
style={{ marginTop: '1rem', fontSize: '1.2rem' }}
onClick={() => setShowDetails(showDetails === true ? false:true )}
>
{showDetails === true ? (<KeyboardArrowUpIcon />):( <KeyboardArrowDownIcon /> )}
Inspection Details
{showDetails === true ? (<KeyboardArrowUpIcon />):( <KeyboardArrowDownIcon /> )}
</IconButton>
<Collapse in={showDetails}>
<Box
Expand Down

0 comments on commit ff7bc91

Please sign in to comment.