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
Hi, if I have a module container
container
@include module(container) { background: red; }
and then another module hero
hero
@include module(hero) { @include component(background-container) { @include is(desktop) { margin: 10px auto; } } }
the generated CSS:
.container, [class*=container--] { background: red; }
also affects my div named thus: <div class="hero__background-container--desktop">
<div class="hero__background-container--desktop">
The text was updated successfully, but these errors were encountered:
Comment from Raptori on the reactiflux discord
[class^="container-"], [class*=" container-"] might work?
[class^="container-"], [class*=" container-"]
Sorry, something went wrong.
esr360
No branches or pull requests
Hi, if I have a module
container
and then another module
hero
the generated CSS:
also affects my div named thus:
<div class="hero__background-container--desktop">
The text was updated successfully, but these errors were encountered: