Merge pull request #20151 from jboeijenga/fix/mobile-menu-overlay-colour

Changed color of the overlay components to match navigation color
This commit is contained in:
Patrik Oldsberg
2023-09-28 21:28:30 +02:00
committed by GitHub
2 changed files with 7 additions and 2 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/core-components': patch
---
Change overlay header colors in the mobile menu to use navigation color from the theme
@@ -79,14 +79,14 @@ const useStyles = makeStyles<BackstageTheme, { sidebarConfig: SidebarConfig }>(
overlayHeader: {
display: 'flex',
color: theme.palette.text.primary,
color: theme.palette.navigation.color,
alignItems: 'center',
justifyContent: 'space-between',
padding: theme.spacing(2, 3),
},
overlayHeaderClose: {
color: theme.palette.text.primary,
color: theme.palette.navigation.color,
},
marginMobileSidebar: props => ({