@polastack/design-system 0.1.11 → 0.1.13
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/README.md +4 -1
- package/dist/index.js +22 -25
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/styles/globals.css +6 -0
package/package.json
CHANGED
package/src/styles/globals.css
CHANGED
|
@@ -237,6 +237,7 @@
|
|
|
237
237
|
--animate-slide-out-right: slide-out-right var(--duration-slow) var(--ease-in);
|
|
238
238
|
--animate-slide-in-left: slide-in-left var(--duration-slow) var(--ease-out);
|
|
239
239
|
--animate-slide-out-left: slide-out-left var(--duration-slow) var(--ease-in);
|
|
240
|
+
--animate-spinner: spinner-fade 0.8s ease-in-out infinite;
|
|
240
241
|
}
|
|
241
242
|
|
|
242
243
|
/* ============================================================
|
|
@@ -328,6 +329,11 @@
|
|
|
328
329
|
to { transform: translateX(-100%); }
|
|
329
330
|
}
|
|
330
331
|
|
|
332
|
+
@keyframes spinner-fade {
|
|
333
|
+
0%, 100% { opacity: 1; }
|
|
334
|
+
50% { opacity: 0.15; }
|
|
335
|
+
}
|
|
336
|
+
|
|
331
337
|
/* ============================================================
|
|
332
338
|
Base Styles
|
|
333
339
|
============================================================ */
|