🐛 Fix problem with reverse config in flex

This commit is contained in:
alonso.torres 2025-03-07 09:23:07 +01:00
parent 97fb1e00c2
commit ba4554da79
3 changed files with 16 additions and 8 deletions

View file

@ -502,8 +502,10 @@
(defn translate-layout-flex-dir
[flex-dir]
(case flex-dir
:row 0
:column 1))
:row 0
:row-reverse 1
:column 2
:column-reverse 3))
(defn translate-layout-align-items
[align-items]