diff --git a/src/theme.tsx b/src/theme.tsx index b3a0ecf2..e764e9fa 100644 --- a/src/theme.tsx +++ b/src/theme.tsx @@ -1763,6 +1763,24 @@ export const theme = createTheme({ }, }, }, + MuiToolbar: { + styleOverrides: { + root: { + minHeight: '40px', + height: '40px', + // override media query for screens 600px and up + '@media (min-width:600px)': { + minHeight: '40px', + height: '40px', + }, + // override media query for landscape orientation + '@media (min-width:0px) and (orientation: landscape)': { + minHeight: '40px', + height: '40px', + }, + }, + }, + }, MuiSnackbar: { styleOverrides: { anchorOriginBottomRight: ({ theme }) => ({