mirror of
https://github.com/koel/koel
synced 2024-12-22 10:33:16 +00:00
17 lines
229 B
SCSS
17 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;
|
||
|
}
|
||
|
}
|
||
|
}
|