@tinacms/scripts 1.0.0 → 1.0.1
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/dist/index.js +13 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -278,7 +278,20 @@ var config = (cwd = "") => {
|
|
|
278
278
|
auto: "auto"
|
|
279
279
|
},
|
|
280
280
|
extend: {
|
|
281
|
+
keyframes: {
|
|
282
|
+
slideIn: {
|
|
283
|
+
"0%": {
|
|
284
|
+
opacity: "0",
|
|
285
|
+
transform: "translateY(-1rem)"
|
|
286
|
+
},
|
|
287
|
+
"100%": {
|
|
288
|
+
opacity: "1",
|
|
289
|
+
transform: "translateY(0)"
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
},
|
|
281
293
|
animation: {
|
|
294
|
+
"slide-in": "slideIn 150ms ease-out 1 normal forwards",
|
|
282
295
|
"spin-reverse": "spin 1s linear infinite reverse"
|
|
283
296
|
},
|
|
284
297
|
scale: {
|