Fork me on GitHub
#css
<
2017-01-02
>
hkjels14:01:54

How would I express

.Container:not(.Compact) > * + * {}
using garden from within the .Container selector’s scope?
[(s/& (s/> (s/not :.Compact)
              (s/+ :* :*))) {:margin-left (u/rem 2)}]
Prints .Container &:not(.Compact) > * + * {}

hkjels14:01:57

notice that &:not should have been just :not without the whitespace