@appscode/design-system 2.4.5 → 2.4.6
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
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
// for spin
|
|
1
2
|
.is-spin {
|
|
2
3
|
animation: spin 1000ms linear infinite;
|
|
3
4
|
}
|
|
@@ -9,3 +10,19 @@
|
|
|
9
10
|
transform: rotate(360deg);
|
|
10
11
|
}
|
|
11
12
|
}
|
|
13
|
+
|
|
14
|
+
// for shake
|
|
15
|
+
.shake {
|
|
16
|
+
animation: shake 150ms 4 linear;
|
|
17
|
+
}
|
|
18
|
+
@keyframes shake {
|
|
19
|
+
0% {
|
|
20
|
+
transform: translate(3px, 0);
|
|
21
|
+
}
|
|
22
|
+
50% {
|
|
23
|
+
transform: translate(-3px, 0);
|
|
24
|
+
}
|
|
25
|
+
100% {
|
|
26
|
+
transform: translate(0, 0);
|
|
27
|
+
}
|
|
28
|
+
}
|