give
/
src
/
DonorDashboards
/
resources
/
js
/
app
/
components
/
subscription-row
Last commit date
index.tsx
5 months ago
style.scss
5 months ago
style.scss
44 lines
| 1 | #give-donor-dashboard { |
| 2 | .give-donor-dashboard-table__donation-receipt-button { |
| 3 | background: none; |
| 4 | border: none; |
| 5 | padding: 0; |
| 6 | font: inherit; |
| 7 | color: var(--give-donor-dashboard-accent-color); |
| 8 | text-decoration: none; |
| 9 | cursor: pointer; |
| 10 | display: inline; |
| 11 | text-align: left; |
| 12 | |
| 13 | &:hover { |
| 14 | text-decoration: underline; |
| 15 | } |
| 16 | |
| 17 | &:focus { |
| 18 | outline: 2px solid var(--give-donor-dashboard-accent-color); |
| 19 | outline-offset: 2px; |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | .give-donor-dashboard-table__donation-receipt__cancel { |
| 24 | background: none; |
| 25 | border: none; |
| 26 | padding: 0; |
| 27 | font: inherit; |
| 28 | color: #d92d0b; |
| 29 | text-decoration: none; |
| 30 | cursor: pointer; |
| 31 | display: inline; |
| 32 | text-align: left; |
| 33 | |
| 34 | &:hover { |
| 35 | text-decoration: underline; |
| 36 | } |
| 37 | |
| 38 | &:focus { |
| 39 | outline: 2px solid #d92d0b; |
| 40 | outline-offset: 2px; |
| 41 | } |
| 42 | } |
| 43 | } |
| 44 |