| 1 |
@keyframes epSyncRotation { |
| 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: center; |
| 14 |
display: grid; |
| 15 |
grid-row-gap: 1rem; |
| 16 |
grid-template-columns: min-content minmax(max-content, 1fr) 3fr; |
| 17 |
margin-bottom: 1rem; |
| 18 |
|
| 19 |
@media (max-width: 960px) { |
| 20 |
grid-template-columns: min-content auto; |
| 21 |
} |
| 22 |
|
| 23 |
& svg { |
| 24 |
animation: epSyncRotation 1500ms infinite linear; |
| 25 |
animation-play-state: paused; |
| 26 |
height: 36px; |
| 27 |
margin-right: 12px; |
| 28 |
width: 36px; |
| 29 |
} |
| 30 |
} |
| 31 |
|
| 32 |
.ep-sync-progress--syncing { |
| 33 |
|
| 34 |
& svg { |
| 35 |
animation-play-state: running; |
| 36 |
} |
| 37 |
} |
| 38 |
|
| 39 |
.ep-sync-progress__details { |
| 40 |
|
| 41 |
& strong { |
| 42 |
display: block; |
| 43 |
font-size: 14px; |
| 44 |
} |
| 45 |
} |
| 46 |
|
| 47 |
.ep-sync-progress__progress-bar { |
| 48 |
|
| 49 |
@media (max-width: 960px) { |
| 50 |
grid-column: 1 / -1; |
| 51 |
} |
| 52 |
} |
| 53 |
|