| 1 |
@keyframes ep-sync-rotation { |
| 2 |
|
| 3 |
from { |
| 4 |
transform: rotate(0deg); |
| 5 |
} |
| 6 |
|
| 7 |
to { |
| 8 |
transform: rotate(359deg); |
| 9 |
} |
| 10 |
} |
| 11 |
|
| 12 |
.ep-sync-progress { |
| 13 |
align-items: start; |
| 14 |
display: grid; |
| 15 |
grid-column-gap: 4px; |
| 16 |
grid-row-gap: 16px; |
| 17 |
grid-template-columns: min-content auto; |
| 18 |
margin-bottom: 16px; |
| 19 |
|
| 20 |
& svg { |
| 21 |
animation: ep-sync-rotation 1500ms infinite linear; |
| 22 |
animation-play-state: paused; |
| 23 |
height: 24px; |
| 24 |
width: 24px; |
| 25 |
} |
| 26 |
} |
| 27 |
|
| 28 |
.ep-sync-progress--syncing { |
| 29 |
|
| 30 |
& svg { |
| 31 |
animation-play-state: running; |
| 32 |
} |
| 33 |
} |
| 34 |
|
| 35 |
.ep-sync-progress__details { |
| 36 |
|
| 37 |
& strong { |
| 38 |
display: block; |
| 39 |
line-height: 24px; |
| 40 |
} |
| 41 |
} |
| 42 |
|
| 43 |
.ep-sync-progress__progress-bar { |
| 44 |
grid-column: 1 / -1; |
| 45 |
} |
| 46 |
|