@webdevarif/dashui 0.1.4 → 0.1.5
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/styles/globals.css +15 -1
- package/package.json +1 -1
package/dist/styles/globals.css
CHANGED
|
@@ -1,4 +1,17 @@
|
|
|
1
|
-
@
|
|
1
|
+
@keyframes dashui-shimmer {
|
|
2
|
+
0% { transform: translateX(-100%); }
|
|
3
|
+
100% { transform: translateX(200%); }
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
@keyframes dashui-spin {
|
|
7
|
+
to { transform: rotate(360deg); }
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
@keyframes dashui-pulse {
|
|
11
|
+
0%, 100% { opacity: 1; }
|
|
12
|
+
50% { opacity: 0.5; }
|
|
13
|
+
}
|
|
14
|
+
|
|
2
15
|
/* @webdevarif/dashui � All Tokens Combined
|
|
3
16
|
* Import: import '@webdevarif/dashui/styles'
|
|
4
17
|
*/
|
|
@@ -402,3 +415,4 @@
|
|
|
402
415
|
/* Generated dynamically via API: GET /api/theme/{storeId}/styles.css */
|
|
403
416
|
|
|
404
417
|
|
|
418
|
+
|