mirror of
https://github.com/koel/koel
synced 2024-12-14 06:32:28 +00:00
20 lines
246 B
SCSS
20 lines
246 B
SCSS
.skeleton {
|
|
|
|
.pulse,
|
|
&.pulse {
|
|
animation: skeleton-pulse 2s infinite;
|
|
background-color: rgba(255, 255, 255, .05);
|
|
}
|
|
|
|
@keyframes skeleton-pulse {
|
|
|
|
0%,
|
|
100% {
|
|
opacity: 0;
|
|
}
|
|
|
|
50% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|