give
/
src
/
DonorDashboards
/
resources
/
js
/
app
/
components
/
dashboard-loading-spinner
/
style.scss
give
/
src
/
DonorDashboards
/
resources
/
js
/
app
/
components
/
dashboard-loading-spinner
Last commit date
index.tsx
1 year ago
style.scss
1 year ago
style.scss
39 lines
| 1 | .givewp-donordashboard-loader { |
| 2 | width: 100%; |
| 3 | height: 100%; |
| 4 | min-height: 790px; |
| 5 | position: absolute; |
| 6 | top: 0; |
| 7 | left: 0; |
| 8 | pointer-events: none; |
| 9 | } |
| 10 | |
| 11 | .givewp-donordashboard-loader_wrapper { |
| 12 | width: calc(90% - 12px); |
| 13 | height: 100%; |
| 14 | max-width: 920px; |
| 15 | margin: 8px auto; |
| 16 | border-radius: 8px; |
| 17 | display: flex; |
| 18 | align-items: center; |
| 19 | justify-content: center; |
| 20 | } |
| 21 | |
| 22 | |
| 23 | .givewp-donordashboard-loader_spinner { |
| 24 | width: 90px; |
| 25 | height: 90px; |
| 26 | animation: spin 0.6s linear infinite; |
| 27 | .st0 { |
| 28 | fill: var(--give-donor-dashboard-accent-color); |
| 29 | } |
| 30 | } |
| 31 | @keyframes spin { |
| 32 | 0% { |
| 33 | transform: rotate(0deg); |
| 34 | } |
| 35 | 100% { |
| 36 | transform: rotate(360deg); |
| 37 | } |
| 38 | } |
| 39 |