Closed AlecRust closed 5 years ago
If a selector doesn't have an immediate rule the block doesn't get linted e.g.
/** @define Test */ .Test {} .anything { @media (--viewport-medium) { width: 100%; } }
.anything doesn't get linted, but it does if this is the CSS:
.anything
/** @define Test */ .Test {} .anything { color: red; @media (--viewport-medium) { width: 100%; } }
Related to #119 - Need to adjust that solution to support @media
@media
Fixed in #140
If a selector doesn't have an immediate rule the block doesn't get linted e.g.
.anything
doesn't get linted, but it does if this is the CSS: