Skip to content

Commit

Permalink
[material-ui][Slider] Fix wrong CSS value (#42370)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnajdova committed May 24, 2024
1 parent 2cd2c1f commit a5c5ca9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mui-material/src/Slider/Slider.js
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ export const SliderThumb = styled('span', {
[`&.${sliderClasses.active}`]: {
...(theme.vars
? {
boxShadow: `0px 0px 0px 14px rgba(${theme.vars.palette[color].mainChannel} / 0.16)}`,
boxShadow: `0px 0px 0px 14px rgba(${theme.vars.palette[color].mainChannel} / 0.16)`,
}
: {
boxShadow: `0px 0px 0px 14px ${alpha(theme.palette[color].main, 0.16)}`,
Expand Down

0 comments on commit a5c5ca9

Please sign in to comment.