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
Consider the following Less:
.nav-placeholder { height: 70px; @media (min-width: 700px) { height: 50px; } }
This is valid Less, but throws an error in the console when map: true option is set in the postCSS config:
map: true
Fatal error: Invalid mapping: {"generated":{"line":1,"column":4349},"source":"../partials/nav.less","original":{"line":1,"column":-1},"name":null}
Curiously, the following works fine:
.nav { .nav-placeholder { height: 70px; } @media (min-width: 700px) { .nav-placeholder height: 50px; } } }
Notice that the media query is still nested but the rules are contained in a selector block.
Not sure if this is a bug for the normal postcss repo but I'll see where this goes!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Consider the following Less:
This is valid Less, but throws an error in the console when
map: true
option is set in the postCSS config:Curiously, the following works fine:
Notice that the media query is still nested but the rules are contained in a selector block.
Not sure if this is a bug for the normal postcss repo but I'll see where this goes!
The text was updated successfully, but these errors were encountered: