The previous and next arrows are white when I use the Slider component with minimal settings. This is because slick-theme.css has a .slick-prev:before
and .slick-next:before
that sets the color to white, so the arrows are invisible!
Since I have no control over these arrows, I figured I would create custom arrows. I followed the documentation and simply set color: green
in the style prop. That did nothing, because .slick-next:before
is really what's being displayed.
How do I get rid of .slick-next:before
styling?
See my codesandbox here.