From e9f63d3b40517dc53b32bd68e938adba124acb13 Mon Sep 17 00:00:00 2001 From: Andrea Rosci Date: Thu, 21 Nov 2024 16:46:09 +0100 Subject: [PATCH] Restyle components Change-type: patch --- src/theme.tsx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) 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 }) => ({