Merge pull request #24967 from huggingpixels/sidebar-submenu-title-color

Fixed SubmenuSubtitle is always white including on light background
This commit is contained in:
Vincenzo Scamporlino
2024-06-04 09:54:32 +02:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/core-components': patch
---
Fixed an issue causing `SidebarSubmenu` text to not follow the theme color
@@ -80,7 +80,7 @@ const useStyles = makeStyles<
title: {
fontSize: theme.typography.h5.fontSize,
fontWeight: theme.typography.fontWeightMedium,
color: theme.palette.common.white,
color: theme.palette.navigation.color,
padding: theme.spacing(2.5),
[theme.breakpoints.down('xs')]: {
display: 'none',