Merge pull request #21687 from backstage/philipph/mui5-dark-paper

Fix MuiPaper background color in v5 default dark mode
This commit is contained in:
Fredrik Adelöw
2023-12-05 11:19:52 +01:00
committed by GitHub
2 changed files with 8 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/theme': patch
---
Align Material UI v5 `Paper` component background color in dark mode to v4.
@@ -239,4 +239,7 @@ export const defaultComponentThemes: ThemeOptions['components'] = {
underline: 'hover',
},
},
MuiPaper: {
styleOverrides: { root: { backgroundImage: 'unset' } },
},
};