mirror of
https://github.com/penpot/penpot.git
synced 2025-05-18 12:06:11 +02:00
🐛 Fixes console error for kebab-case properties
This commit is contained in:
parent
d5ff5ea91e
commit
a81d20a2d1
1 changed files with 5 additions and 5 deletions
|
@ -45,11 +45,11 @@
|
||||||
auto-height? (= grow-type :auto-height)
|
auto-height? (= grow-type :auto-height)
|
||||||
|
|
||||||
base #js {:display "inline-flex"
|
base #js {:display "inline-flex"
|
||||||
:flex-direction "column"
|
:flexDirection "column"
|
||||||
:justify-content "inherit"
|
:justifyContent "inherit"
|
||||||
:min-height (when-not (or auto-width? auto-height?) "100%")
|
:minHeight (when-not (or auto-width? auto-height?) "100%")
|
||||||
:min-width (when-not auto-width? "100%")
|
:minWidth (when-not auto-width? "100%")
|
||||||
:vertical-align "top"}]
|
:verticalAlign "top"}]
|
||||||
base)))
|
base)))
|
||||||
|
|
||||||
(defn generate-paragraph-styles
|
(defn generate-paragraph-styles
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue