mirror of
https://github.com/koel/koel
synced 2024-12-24 11:33:05 +00:00
17 lines
232 B
Text
17 lines
232 B
Text
.skeleton {
|
|
.pulse,
|
|
&.pulse {
|
|
@apply bg-white/5;
|
|
animation: skeleton-pulse 2s infinite;
|
|
}
|
|
|
|
@keyframes skeleton-pulse {
|
|
0%,
|
|
100% {
|
|
@apply opacity-0;
|
|
}
|
|
50% {
|
|
@apply opacity-100;
|
|
}
|
|
}
|
|
}
|