style.scss
27 lines
| 1 | /* stylelint-disable selector-class-pattern */ |
| 2 | |
| 3 | .give-donor-dashboard-heading { |
| 4 | color: #555 !important; |
| 5 | font-size: 16px; |
| 6 | margin: 20px 0 10px 0; |
| 7 | display: flex; |
| 8 | align-items: center; |
| 9 | |
| 10 | svg { |
| 11 | margin-right: 8px; |
| 12 | } |
| 13 | |
| 14 | .give-donor-dashboard-heading__spinner { |
| 15 | animation: spin infinite 1s linear; |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | @keyframes spin { |
| 20 | from { |
| 21 | transform: rotate(0deg); |
| 22 | } |
| 23 | to { |
| 24 | transform: rotate(360deg); |
| 25 | } |
| 26 | } |
| 27 |