@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/dist/css/mint.css
CHANGED
|
@@ -1593,6 +1593,14 @@ 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
|
+
}
|
|
1596
1604
|
@keyframes mint-stretch-in {
|
|
1597
1605
|
0% {
|
|
1598
1606
|
transform: scale(1);
|
|
@@ -1696,6 +1704,10 @@ app-root {
|
|
|
1696
1704
|
transition: transform 200ms ease-out;
|
|
1697
1705
|
}
|
|
1698
1706
|
|
|
1707
|
+
.mint-spin {
|
|
1708
|
+
animation: mint-spin 0.75s linear infinite;
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1699
1711
|
.mint-stretch {
|
|
1700
1712
|
animation: mint-stretch-out 0.5s ease forwards;
|
|
1701
1713
|
}
|