This commit is contained in:
ct
2025-07-15 02:28:22 +08:00
parent 6838c542f5
commit d245f5f77c
5 changed files with 289 additions and 25 deletions

View File

@@ -432,3 +432,17 @@ @keyframes shine {
.shiny-text.disabled {
animation: none;
}
/* Shimmer animation for skeleton loading */
@keyframes shimmer {
0% {
background-position: -200% 0;
}
100% {
background-position: 200% 0;
}
}
@utility animate-shimmer {
animation: shimmer 2s ease-in-out infinite;
}