@appartmint/mint 2.10.2 → 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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@appartmint/mint",
3
3
  "author": "App Art Mint LLC",
4
- "version": "2.10.2",
4
+ "version": "2.10.3",
5
5
  "license": "MIT",
6
6
  "description": "The front-end TS/SCSS framework of App Art Mint",
7
7
  "keywords": [
@@ -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) {