address-controls
4 years ago
address-fields
4 years ago
email-controls
4 years ago
utils
2 years ago
content.js
3 weeks ago
index.js
4 years ago
style.scss
3 weeks ago
style.scss
89 lines
| 1 | /* stylelint-disable selector-class-pattern */ |
| 2 | |
| 3 | .give-donor-dashboard__email-controls { |
| 4 | display: flex; |
| 5 | align-self: stretch; |
| 6 | align-items: center; |
| 7 | justify-content: center; |
| 8 | padding-top: 48px; |
| 9 | max-width: fit-content; |
| 10 | font-size: 14px; |
| 11 | |
| 12 | .give-donor-dashboard__make-primary-email { |
| 13 | margin-right: 10px; |
| 14 | color: #3398db; |
| 15 | cursor: pointer; |
| 16 | |
| 17 | &:hover { |
| 18 | text-decoration: underline; |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | .give-donor-dashboard__delete-email { |
| 23 | margin-left: 10px; |
| 24 | color: rgb(199, 81, 81); |
| 25 | cursor: pointer; |
| 26 | |
| 27 | &:hover { |
| 28 | text-decoration: underline; |
| 29 | } |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | .give-donor-dashboard__address-controls { |
| 34 | display: flex; |
| 35 | align-self: stretch; |
| 36 | align-items: center; |
| 37 | justify-content: center; |
| 38 | padding: 28px 0 20px 0; |
| 39 | max-width: fit-content; |
| 40 | font-size: 14px; |
| 41 | |
| 42 | .give-donor-dashboard__make-primary-address { |
| 43 | margin-right: 10px; |
| 44 | color: #3398db; |
| 45 | cursor: pointer; |
| 46 | |
| 47 | &:hover { |
| 48 | text-decoration: underline; |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | .give-donor-dashboard__delete-address { |
| 53 | margin-left: 10px; |
| 54 | color: rgb(199, 81, 81); |
| 55 | cursor: pointer; |
| 56 | |
| 57 | &:hover { |
| 58 | text-decoration: underline; |
| 59 | } |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | .give-donor-dashboard__add-primary-address { |
| 64 | display: flex; |
| 65 | justify-content: space-between; |
| 66 | padding: 0 16px; |
| 67 | border: 1px solid #e2e6ec; |
| 68 | background: #fbfbfb; |
| 69 | margin: 0 0 40px; |
| 70 | |
| 71 | > .give-donor-dashboard-heading { |
| 72 | margin: 10px 0; |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | .give-donor-dashboard__edit-profile-spinner { |
| 77 | animation: spin infinite 1s linear; |
| 78 | } |
| 79 | |
| 80 | @keyframes spin { |
| 81 | from { |
| 82 | transform: rotate(0deg); |
| 83 | } |
| 84 | to { |
| 85 | transform: rotate(360deg); |
| 86 | } |
| 87 | } |
| 88 | |
| 89 |