Skip to content

Commit

Permalink
Set DrawerItem ListItemIcon fontSize to medium when not nested
Browse files Browse the repository at this point in the history
  • Loading branch information
sboleyn committed Nov 2, 2023
1 parent 024164d commit d734ffb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/layout/DrawerItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const DrawerItem = (props) => {
: classes.icon
}
style={{ fontSize: !nested ? "2.1875rem" : null }}
fontSize={!nested ? "large" : "default"}
fontSize={!nested ? "large" : "medium"}
/>
</ListItemIcon>
)}
Expand Down

0 comments on commit d734ffb

Please sign in to comment.