style.scss
66 lines
| 1 | /* stylelint-disable selector-class-pattern */ |
| 2 | |
| 3 | .give-donor-dashboard-table__footer-nav { |
| 4 | a { |
| 5 | border: none; |
| 6 | color: #9fa2b4; |
| 7 | cursor: pointer; |
| 8 | } |
| 9 | svg { |
| 10 | margin: 8px; |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | .give-donor-dashboard-table__donation-date, |
| 15 | .give-donor-dashboard-table__donation-time { |
| 16 | white-space: nowrap; |
| 17 | } |
| 18 | |
| 19 | .give-donor-dashboard-table__row { |
| 20 | .give-donor-dashboard-table__donation-amount { |
| 21 | font-size: 18px; |
| 22 | color: #424242; |
| 23 | font-weight: 500; |
| 24 | |
| 25 | @media screen and (max-width: 920px) { |
| 26 | font-size: 24px; |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | .give-donor-dashboard-table__donation-status { |
| 31 | display: flex; |
| 32 | align-items: center; |
| 33 | |
| 34 | .give-donor-dashboard-table__donation-status-indicator { |
| 35 | width: 12px; |
| 36 | height: 12px; |
| 37 | border-radius: 50%; |
| 38 | overflow: hidden; |
| 39 | margin-right: 6px; |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | .give-donor-dashboard-table__donation-test-tag { |
| 44 | color: #fff; |
| 45 | background: #ffba00; |
| 46 | padding: 4px 8px; |
| 47 | border-radius: 5px; |
| 48 | font-weight: 500; |
| 49 | font-size: 12px; |
| 50 | line-height: 1; |
| 51 | margin-top: 4px; |
| 52 | display: inline-block; |
| 53 | } |
| 54 | |
| 55 | .give-donor-dashboard-table__donation-id { |
| 56 | color: #6b6b6b; |
| 57 | } |
| 58 | |
| 59 | .give-donor-dashboard-table__donation-receipt a { |
| 60 | color: var(--give-donor-dashboard-accent-color); |
| 61 | text-decoration: none; |
| 62 | border: none; |
| 63 | cursor: pointer; |
| 64 | } |
| 65 | } |
| 66 |