Closed
Description
Using Grunt-contrib-less (1.0.1)
When importing a .less file containing @media queries, the styles within @media are imported even if the import directive is set to (reference), below is an example:
imported.less
@someColor: #121311;
h1 {
color: @someColor;
}
@media (min-width: 600px) {
h2 {
color: #000;
}
}
importer.less
@import (reference) "imported.less";
will output:
@media (min-width: 600px) {
h2 {
color: #000;
}
}
Metadata
Metadata
Assignees
Labels
No labels