If I have the following
.dark-theme .link {color:black;}
.dark-theme a {color:red;}
.dark-theme button {color:green;}
.dark-theme div {color:orange;}
.dark-theme .whatever {color:blue;}
.dark-theme .element {color:navyblue;}
.dark-theme .element2 {color:black;}
Is there a way to do something like
.dark-theme {
.link {color:black;}
a {color:red;}
button {color:green;}
div {color:orange;}
.whatever {color:blue;}
.element {color:navyblue;}
.element2 {color:black;}
}
Group styles of child so I don't have to keep rewriting the parent before.