loadAsyncData.scss
16 lines
| 1 | .give-skeleton { |
| 2 | display: inline-block; |
| 3 | position: relative; |
| 4 | top: 0.1rem; |
| 5 | animation: give-skeleton-loading 1s linear infinite alternate; |
| 6 | } |
| 7 | |
| 8 | @keyframes give-skeleton-loading { |
| 9 | 0% { |
| 10 | background-color: hsl(200, 20%, 80%); |
| 11 | } |
| 12 | 100% { |
| 13 | background-color: hsl(200, 20%, 95%); |
| 14 | } |
| 15 | } |
| 16 |