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) > * + * {}
notice that &:not
should have been just :not
without the whitespace