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
It should respect escaped characters in CSS.
Source:
/* can be used in html as "some:selector" */ .some\:selector { ... }
Expected:
._aHash { ... }
Actual:
._aHash\:selector { ... }
The text was updated successfully, but these errors were encountered:
For more context. In https://github.com/necolas/react-web-sdk I'd like to rely on this working:
import styles from './styles.css'; styles['width:100%']; => <correct-selector-hash>
But at the moment :, %, and # are not handled properly when they are escaped in the CSS selector.
:
%
#
Sorry, something went wrong.
Thanks, this issue was fixed in 0.15.1 with the use of https://github.com/css-modules/css-selector-tokenizer/
No branches or pull requests
It should respect escaped characters in CSS.
Source:
Expected:
._aHash { ... }
Actual:
._aHash\:selector { ... }
The text was updated successfully, but these errors were encountered: