forest
forest copied to clipboard
Typo in docs
Howdy, I'm evaluating this library and found you have an error in your docs in the Complex Selectors section here:
(defstylesheet styles
[(descendant .container .element)
{:padding-bottom "16px"}]
;; Translated into the selector ".container .element"
[(> .parent .immediate-child)
{:font-size "16px"}]
;; Translated into the selector ".container > .element" ;;<-------------
)
```clojure
Cheers