We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Pseudo-element with - don't work properly.
-
eg.:
Label:first-child { border-left: none; }
In transpiled file looks like this:
// ... var className = styles.Label + (variant.first-child ? ' ' + styles.Label__first-child : ''); // ...
And selector will be: .Label__first-child---36X92.
.Label__first-child---36X92
The text was updated successfully, but these errors were encountered:
@andreypopp Do you know how to fix it?
Sorry, something went wrong.
@Dexted yep, we need to transform variant names to camel case on both sides, probably here:
Would be happy if you can submit a PR with a failing test and a fix! Feel free to ask me questions if any!
@andreypopp Ok I'll try to fix it.
Successfully merging a pull request may close this issue.
Pseudo-element with
-
don't work properly.eg.:
In transpiled file looks like this:
And selector will be:
.Label__first-child---36X92
.The text was updated successfully, but these errors were encountered: