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
When using a media-query with a function, like @media(min-width: break('large')) the no-mergeable-selectors rule has a false positive, because it's evaluating the rule to @media(min-width: null) for all break function calls and thus throws a warning for media-queries using different values in the break function.
This seems to be related to #703 which probably included a fix for variables but not for functions.
The text was updated successfully, but these errors were encountered:
When using a media-query with a function, like
@media(min-width: break('large'))
theno-mergeable-selectors
rule has a false positive, because it's evaluating the rule to@media(min-width: null)
for allbreak
function calls and thus throws a warning for media-queries using different values in thebreak
function.This seems to be related to #703 which probably included a fix for variables but not for functions.
The text was updated successfully, but these errors were encountered: