Closed siminn-asdisj closed 2 years ago
Is it possible to change the color and font weight of the default numerical indicator that is active?
I'm trying to go from this:
To this:
I've tried styling it with
label: { _activeStep: { fontWeight: 700, color: #000000, } }
(and also _active instead of _activeStep) but that isn't working.
_active
_activeStep
Hey @siminn-asdisj you should be able to achieve this by styling the span element inside stepIconContainer:
span
stepIconContainer
stepIconContainer: { ...YourStyles, '& span': { fontWeight: '900', }, }
Is it possible to change the color and font weight of the default numerical indicator that is active?
I'm trying to go from this:
To this:
I've tried styling it with
(and also
_active
instead of_activeStep
) but that isn't working.