Merge pull request #22336 from gbsandbox/master

TextSize - fix value label text color
This commit is contained in:
Patrik Oldsberg
2024-02-03 14:38:19 +01:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-techdocs-module-addons-contrib': patch
---
Fixed the value label text color in dark mode for the TextSize addon.
@@ -70,7 +70,7 @@ const StyledSlider = withStyles(theme => ({
left: '50%',
transform: 'scale(1) translate(-50%, -5px) !important',
'& *': {
color: theme.palette.common.black,
color: theme.palette.textSubtle,
fontSize: theme.typography.caption.fontSize,
background: 'transparent',
},