Skip to content

Commit

Permalink
feat: force MenuItem font size (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
braianj authored Jan 7, 2025
1 parent 39a4584 commit c9e6654
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Navbar/MenuItem/MenuItem.styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ const MenuItemTitle = styled(Typography, {
const { textColor, theme } = props
return {
textTransform: "capitalize",
fontWeight: "inherit",
fontWeight: "400",
fontSize: "16px",
color: textColor ? textColor : theme.palette.text.secondary,
[theme!.breakpoints.down("sm")]: {
color: textColor ? textColor : theme.palette.text.primary,
Expand Down

0 comments on commit c9e6654

Please sign in to comment.