You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use Sass variable interpolation for media queries. (i.e. @media #{$media-query-md-only} { … }) Sass-lint throws a warning that I can merge rules that I actually can't. Sass-lint sees my media queries as null because of the variable interpolation. I'm sure this can be fixed.
I use Sass variable interpolation for media queries. (i.e.
@media #{$media-query-md-only} { … }
) Sass-lint throws a warning that I can merge rules that I actually can't. Sass-lint sees my media queries asnull
because of the variable interpolation. I'm sure this can be fixed.To be more clear:
This would throw a warning like:
Rule '.navigation @media null .nav-item' should be merged with the rule on line 3
at line 8 col 5The text was updated successfully, but these errors were encountered: