@trackunit/css-tailwind 0.0.71 → 0.0.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -926,9 +926,17 @@ var animations = {
|
|
|
926
926
|
"slide-in-bottom": "slideInBottom 0.2s ease-in-out forwards",
|
|
927
927
|
"ping-sm": "pingSm 1s cubic-bezier(0, 0, 0.2, 1) infinite",
|
|
928
928
|
"bg-scroll-br": "bgScrollBR 10s ease infinite",
|
|
929
|
+
"modal-fade": "modalFade 0.3s ease-in-out 1 forwards",
|
|
929
930
|
"fade-in-rising": "fadeInRising 0.2s ease-in"
|
|
930
931
|
},
|
|
931
932
|
keyframes: {
|
|
933
|
+
modalFade: {
|
|
934
|
+
from: {
|
|
935
|
+
opacity: "0",
|
|
936
|
+
visibility: "hidden"
|
|
937
|
+
},
|
|
938
|
+
to: { opacity: "1", visibility: "visible" }
|
|
939
|
+
},
|
|
932
940
|
copy: {
|
|
933
941
|
from: {
|
|
934
942
|
color: "green",
|