You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to set a color on a class and a different color if it's applied to an a.
Consider the following scss:
.item {
color: red;
a#{&} {
color: blue;
}
}
This renders Parsing error: Please check validity of the block starting from line #4
Obviously this example is very simple but let's assume my selector is more complex so please don't just say to just use two separate selectors because more complex situations makes this very difficult to maintain. Also, it looks like this is expected behavior based on SASS documentation as well as certain issues on sass/sass.
The text was updated successfully, but these errors were encountered:
Gulp Sass is a thin wrapper around Node Sass, which in turn is a wrapper around Libsass. If you have output/parsing errors, please report them to Libsass
I want to set a color on a class and a different color if it's applied to an
a
.Consider the following scss:
This renders
Parsing error: Please check validity of the block starting from line #4
Obviously this example is very simple but let's assume my selector is more complex so please don't just say to just use two separate selectors because more complex situations makes this very difficult to maintain. Also, it looks like this is expected behavior based on SASS documentation as well as certain issues on sass/sass.
The text was updated successfully, but these errors were encountered: