@appartmint/mint 2.10.3 → 2.10.5

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
@@ -1601,6 +1601,25 @@ app-root {
1601
1601
  transform: rotate(360deg);
1602
1602
  }
1603
1603
  }
1604
+ @keyframes mint-spin-centered {
1605
+ 0% {
1606
+ transform: rotate(0deg) translate(-50%, -50%);
1607
+ }
1608
+ 100% {
1609
+ transform: rotate(360deg) translate(-50%, -50%);
1610
+ }
1611
+ }
1612
+ @keyframes mint-pulse {
1613
+ 0% {
1614
+ opacity: 0;
1615
+ }
1616
+ 75% {
1617
+ opacity: 0.75;
1618
+ }
1619
+ 100% {
1620
+ opacity: 0;
1621
+ }
1622
+ }
1604
1623
  @keyframes mint-stretch-in {
1605
1624
  0% {
1606
1625
  transform: scale(1);
@@ -1705,7 +1724,26 @@ app-root {
1705
1724
  }
1706
1725
 
1707
1726
  .mint-spin {
1708
- animation: mint-spin 0.75s linear infinite;
1727
+ animation: mint-spin 1s linear infinite;
1728
+ }
1729
+ .mint-spin-1 {
1730
+ animation-duration: 1s;
1731
+ }
1732
+ .mint-spin-2 {
1733
+ animation-duration: 2s;
1734
+ }
1735
+ .mint-spin-3 {
1736
+ animation-duration: 3s;
1737
+ }
1738
+ .mint-spin-4 {
1739
+ animation-duration: 4s;
1740
+ }
1741
+ .mint-spin-5 {
1742
+ animation-duration: 5s;
1743
+ }
1744
+
1745
+ .mint-pulse-out {
1746
+ animation: mint-pulse 0.75s ease-in-out forwards;
1709
1747
  }
1710
1748
 
1711
1749
  .mint-stretch {