garden
garden copied to clipboard
Combination of s/& s/> breaks
[:.Container
[(s/& (s/> (s/not :.Compact) (s/+ :* :*))) {:margin-left (u/rem 2)}]]
prints:
.Container &:not(.Compact) > * + *
instead of
.Container:not(.Compact) > * + *
;; Failing case for "selectors_test.cljc"
(s/a (s/& :.foo (s/> (s/not s/h1) (s/+ :* :*)))) "a.foo:not(h1) > * + *"