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
crash at parsing
var CSSOM = require('cssom'); var css; try { css = CSSOM.parse(` @-moz-document url-prefix() { @media only screen{ #main { color:red; } } } `); console.log(css); }catch(e) { /* Error { [Error: Unexpected } (line 8, char 3)] line: 8, char: 3, styleSheet: CSSStyleSheet { parentStyleSheet: null, cssRules: [ [Object] ] } } */ console.log(e); } css = CSSOM.parse(` @-moz-document url-prefix() { #main { color:red; } } @media only screen{ #main { color:red; } } `); console.log(css);// works
The text was updated successfully, but these errors were encountered:
Same problem when using mocka with Vuetify / VGrid. It produces
@-moz-document url-prefix() { @media print { .v-content { display: block; } } }
I think vuetify uses Jest and removes CSS completely via Jest-CSS-Modules
Sorry, something went wrong.
same here with: parse("@svg-load url(./some.svg){ .path{} }")
parse("@svg-load url(./some.svg){ .path{} }")
No branches or pull requests
crash at parsing
The text was updated successfully, but these errors were encountered: