added Spinning Animation for refresh button

This commit is contained in:
Pramod Mahajan 2025-04-29 00:49:52 +05:30
parent f42b2d2724
commit 5b88c86df5

View File

@ -120,3 +120,13 @@ button:focus-visible {
::-webkit-scrollbar-thumb:hover {
background-color: #555; /* Color of the thumb on hover */
}
@keyframes spin {
100% {
transform: rotate(-360deg); /* Counterclockwise */
}
}
.spin {
animation: spin 1s linear infinite;
}