css

For all your CSS related content...
2017-01-02T14:09:54.000008Z

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) > * + * {}

2017-01-02T14:10:57.000009Z

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