I need to select previous sibling. And to do that I am referring to this link. https://dev.to/ritvikdubey27/sibling-selectors-in-css-33k
This the code snippet:
p:hover ? h1 {
font-size: 30px;
color: red;
}
It is working fine in CSS but when I add it to my react project with SCSS support, it is not working. And I am not able to find any documentation or reference link to fix this.
Any help would be highly appreciated.