@appartmint/mint 2.10.2 → 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
@@ -1593,6 +1593,33 @@ app-root {
1593
1593
  transform: translateY(100vh);
1594
1594
  }
1595
1595
 
1596
+ @keyframes mint-spin {
1597
+ 0% {
1598
+ transform: rotate(0deg);
1599
+ }
1600
+ 100% {
1601
+ transform: rotate(360deg);
1602
+ }
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
+ }
1596
1623
  @keyframes mint-stretch-in {
1597
1624
  0% {
1598
1625
  transform: scale(1);
@@ -1696,6 +1723,29 @@ app-root {
1696
1723
  transition: transform 200ms ease-out;
1697
1724
  }
1698
1725
 
1726
+ .mint-spin {
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;
1747
+ }
1748
+
1699
1749
  .mint-stretch {
1700
1750
  animation: mint-stretch-out 0.5s ease forwards;
1701
1751
  }