koel/resources/assets/css/partials/skeleton.pcss

16 lines
226 B
Text
Raw Normal View History

2022-07-30 15:08:20 +00:00
.skeleton {
2024-04-04 20:13:35 +00:00
.pulse, &.pulse {
2024-04-04 22:20:42 +00:00
@apply bg-white/5;
2022-07-30 15:08:20 +00:00
animation: skeleton-pulse 2s infinite;
}
@keyframes skeleton-pulse {
2024-04-04 20:13:35 +00:00
0%, 100% {
2024-04-04 22:20:42 +00:00
@apply opacity-0;
2022-07-30 15:08:20 +00:00
}
50% {
2024-04-04 22:20:42 +00:00
@apply opacity-100;
2022-07-30 15:08:20 +00:00
}
}
}