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