🐛 Fixes console error for kebab-case properties

This commit is contained in:
alonso.torres 2021-02-12 12:14:31 +01:00
parent d5ff5ea91e
commit a81d20a2d1

View file

@ -45,11 +45,11 @@
auto-height? (= grow-type :auto-height)
base #js {:display "inline-flex"
:flex-direction "column"
:justify-content "inherit"
:min-height (when-not (or auto-width? auto-height?) "100%")
:min-width (when-not auto-width? "100%")
:vertical-align "top"}]
:flexDirection "column"
:justifyContent "inherit"
:minHeight (when-not (or auto-width? auto-height?) "100%")
:minWidth (when-not auto-width? "100%")
:verticalAlign "top"}]
base)))
(defn generate-paragraph-styles