Makes appear logic work right

This commit is contained in:
2023-10-21 13:25:00 -07:00
parent 9ddbd31cc8
commit 34f4a12b2e
5 changed files with 107 additions and 72 deletions

View File

@@ -18,3 +18,9 @@
(defn triggers [& triggers]
(str/join ", " triggers))
(defn alpine-appear [m]
(assoc m
"x-transition:enter" "transition duration-500"
"x-transition:enter-start" "opacity-0"
"x-transition:enter-end" "opacity-100"))