garden icon indicating copy to clipboard operation
garden copied to clipboard

Combination of s/& s/> breaks

Open hkjels opened this issue 7 years ago • 0 comments

[:.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) > * + *"

hkjels avatar Jan 02 '17 14:01 hkjels