mirror of
https://github.com/koel/koel
synced 2024-12-21 01:53:11 +00:00
16 lines
238 B
SCSS
16 lines
238 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;
|
|
}
|
|
}
|
|
}
|