We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Class .other can inherit properties from class .something like this:
.other
.something
.something { ... } .other { ... .something; }
However if the .something class contains variable in its name, it's impossible:
@prefix: abc; .@{prefix}-something { ... } .other { .@{prefix}-something; // error } .other { .abc-something; // error as well }
When I am using third party library, which has classes in the form of .@{prefix}-something (e.g. Font-Awesome icons), I cannot inherit from them.
.@{prefix}-something
Or is there some way, which I am missing?
The text was updated successfully, but these errors were encountered:
See #1399.
P.S. Also note that:
@prefix: abc; .@{prefix}-something { /* ... */ } .other { .abc-something; // OK }
works just fine (since v1.6.0).
Sorry, something went wrong.
Closing as duplicate of #1399.
No branches or pull requests
Class
.other
can inherit properties from class.something
like this:However if the
.something
class contains variable in its name, it's impossible:When I am using third party library, which has classes in the form of
.@{prefix}-something
(e.g. Font-Awesome icons), I cannot inherit from them.Or is there some way, which I am missing?
The text was updated successfully, but these errors were encountered: