react-sidenav
react-sidenav copied to clipboard
navtext color change
How to change all navtext color with styled component
I second that question.
you should go css file of it , search "navtext" and change the color as you want
I also couldn't find a way to style it using the styled-component. It doesn't seem to work properly. But, if you put the styles in the style prop, it works fine, like this:
const TextStyle = {
color: "#fff",
};
//...
<NavText style={TextStyle}>Home</NavText>
Maybe it is a bug, I don't know. But I'm finding this sideBar VERY HARD to customize. There should be some way easier to make it work with styled-components