We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78f6009 commit 48953acCopy full SHA for 48953ac
src/ast.cpp
@@ -793,7 +793,7 @@ namespace Sass {
793
if (lhs_tail->combinator() != rhs_tail->combinator()) return false;
794
if (lhs_tail->head() && !rhs_tail->head()) return false;
795
if (!lhs_tail->head() && rhs_tail->head()) return false;
796
- if (lhs_tail->head() && lhs_tail->head()) {
+ if (lhs_tail->head() && rhs_tail->head()) {
797
if (!lhs_tail->head()->is_superselector_of(rhs_tail->head())) return false;
798
}
799
0 commit comments