From c9e66549fc4e6ea4e4db06c737e273f15bcb0c7b Mon Sep 17 00:00:00 2001 From: Braian Mellor Date: Tue, 7 Jan 2025 10:40:15 -0300 Subject: [PATCH] feat: force MenuItem font size (#215) --- src/components/Navbar/MenuItem/MenuItem.styled.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Navbar/MenuItem/MenuItem.styled.ts b/src/components/Navbar/MenuItem/MenuItem.styled.ts index 5ac9a32..e04b878 100644 --- a/src/components/Navbar/MenuItem/MenuItem.styled.ts +++ b/src/components/Navbar/MenuItem/MenuItem.styled.ts @@ -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,