@appartmint/mint 2.10.8 → 2.10.10

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.8",
4
+ "version": "2.10.10",
5
5
  "license": "MIT",
6
6
  "description": "The front-end TS/SCSS framework of App Art Mint",
7
7
  "keywords": [
@@ -166,14 +166,15 @@
166
166
  }
167
167
 
168
168
  &-hover {
169
+ $animation: #{prefix(spin)} 1s ease-in-out forwards;
169
170
  @include states(hover, focus) {
170
- animation: #{prefix(spin)} 1.5s ease-in-out forwards;
171
+ animation: $animation;
171
172
  }
172
173
 
173
174
  &-icon {
174
175
  @include states(hover, focus) {
175
176
  i {
176
- animation: #{prefix(spin)} 1.5s ease-in-out forwards;
177
+ animation: $animation;
177
178
  }
178
179
  }
179
180
  }