Skip to content

Commit

Permalink
Restyle components
Browse files Browse the repository at this point in the history
Change-type: patch
  • Loading branch information
Andrea Rosci authored and Andrea Rosci committed Nov 21, 2024
1 parent 78eb946 commit e9f63d3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/theme.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 }) => ({
Expand Down

0 comments on commit e9f63d3

Please sign in to comment.