@appartmint/mint 2.10.1 → 2.10.3
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
|
@@ -11,6 +11,16 @@
|
|
|
11
11
|
@use '../util' as *;
|
|
12
12
|
|
|
13
13
|
/// Animations
|
|
14
|
+
@keyframes #{prefix(spin)} {
|
|
15
|
+
0% {
|
|
16
|
+
transform: rotate(0deg);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
100% {
|
|
20
|
+
transform: rotate(360deg);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
14
24
|
@keyframes #{prefix(stretch-in)} {
|
|
15
25
|
0% {
|
|
16
26
|
transform: scale(1);
|
|
@@ -122,6 +132,10 @@
|
|
|
122
132
|
}
|
|
123
133
|
}
|
|
124
134
|
|
|
135
|
+
#{class(spin)} {
|
|
136
|
+
animation: #{prefix(spin)} 0.75s linear infinite;
|
|
137
|
+
}
|
|
138
|
+
|
|
125
139
|
#{class(stretch)} {
|
|
126
140
|
animation: #{prefix(stretch-out)} 0.5s ease forwards;
|
|
127
141
|
@include states(hover, focus) {
|