mirror of
https://github.com/koel/koel
synced 2024-12-01 08:19:18 +00:00
15 lines
226 B
Text
15 lines
226 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;
|
|
}
|
|
}
|
|
}
|