@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/dist/css/mint.css CHANGED
@@ -1029,9 +1029,6 @@ button i:only-child,
1029
1029
  .mint-btn-submit.mint-success[disabled] {
1030
1030
  filter: none !important;
1031
1031
  }
1032
- .mint-btn-submit i.fa-check {
1033
- animation: submit-success 750ms ease-in-out;
1034
- }
1035
1032
 
1036
1033
  .mint-pill {
1037
1034
  padding: 0 0.75rem;
@@ -1596,6 +1593,14 @@ app-root {
1596
1593
  transform: translateY(100vh);
1597
1594
  }
1598
1595
 
1596
+ @keyframes mint-spin {
1597
+ 0% {
1598
+ transform: rotate(0deg);
1599
+ }
1600
+ 100% {
1601
+ transform: rotate(360deg);
1602
+ }
1603
+ }
1599
1604
  @keyframes mint-stretch-in {
1600
1605
  0% {
1601
1606
  transform: scale(1);
@@ -1699,6 +1704,10 @@ app-root {
1699
1704
  transition: transform 200ms ease-out;
1700
1705
  }
1701
1706
 
1707
+ .mint-spin {
1708
+ animation: mint-spin 0.75s linear infinite;
1709
+ }
1710
+
1702
1711
  .mint-stretch {
1703
1712
  animation: mint-stretch-out 0.5s ease forwards;
1704
1713
  }