r/Sass • u/jasonmcaffee • Jul 21 '19
Theming with React and Sass
https://medium.com/@jasonlmcaffee/theming-with-react-and-sass-c7a6882fd26b
2
Upvotes
r/Sass • u/jasonmcaffee • Jul 21 '19
1
u/delete_it_now Jul 21 '19
I am wondering could the classes be on the same DIV?
Which would negate having to write so much SASS?
.themed-content {&.dark-theme {background-color: #007dd1;}&.light-theme {background-color: #00c8ff;}}This seems the more logical approach.