I am trying to save a selector in SASS for easier referencing later, however I get a syntax error.
Here's what I'm trying to do:
$icon: [class*="icon"];
You need to convert it to a string if you want to use it as a variable:
$icon: '[class*="icon"]'; #{$icon} { // stuff }
1.4m articles
1.4m replys
5 comments
57.0k users