I'm currently working on a React application and I have a question. I have two separate components: and with CSS classes navigation.css and navigationLogo.css respectively. In navigation.css, I defined a class called .main, and in navigationLogo.css, I want to create a class like this:
.main .main_in_logo {
color: red;
}
However, I am facing limitations with CSS Modules that prevent me from achieving this. Any suggestions for a workaround?