give
/
src
/
Donations
/
resources
/
admin
/
components
/
DonationDetailsPage
/
Tabs
/
Overview
/
DonationSummaryGrid
/
styles.module.scss
give
/
src
/
Donations
/
resources
/
admin
/
components
/
DonationDetailsPage
/
Tabs
/
Overview
/
DonationSummaryGrid
Last commit date
PaymentMethodIcon.tsx
1 year ago
icon.tsx
11 months ago
index.tsx
9 months ago
styles.module.scss
9 months ago
styles.module.scss
100 lines
| 1 | |
| 2 | .campaignLink, .donorLink { |
| 3 | align-self: stretch; |
| 4 | font-size: 1.125rem; |
| 5 | font-weight: 600; |
| 6 | line-height: calc(28 / 18); |
| 7 | text-decoration: none; |
| 8 | |
| 9 | &:hover { |
| 10 | text-decoration: underline; |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | .donorLink { |
| 15 | margin-top: var(--givewp-spacing-1); |
| 16 | } |
| 17 | |
| 18 | .paymentMethod { |
| 19 | display: flex; |
| 20 | align-items: center; |
| 21 | gap: var(--givewp-spacing-2); |
| 22 | } |
| 23 | |
| 24 | .donationType { |
| 25 | display: flex; |
| 26 | justify-content: space-between; |
| 27 | align-items: center; |
| 28 | width: 100%; |
| 29 | } |
| 30 | |
| 31 | .gatewayLink { |
| 32 | display: flex; |
| 33 | align-items: center; |
| 34 | gap: var(--givewp-spacing-2); |
| 35 | margin-top: var(--givewp-spacing-1); |
| 36 | font-family: Inter; |
| 37 | font-size: 0.875rem; |
| 38 | font-weight: 500; |
| 39 | font-stretch: normal; |
| 40 | font-style: normal; |
| 41 | line-height: 1.43; |
| 42 | letter-spacing: normal; |
| 43 | text-align: left; |
| 44 | } |
| 45 | |
| 46 | .date { |
| 47 | font-weight: 500; |
| 48 | font-size: 1.125rem; |
| 49 | line-height: calc(28 / 18); |
| 50 | color: var(--givewp-neutral-900); |
| 51 | } |
| 52 | |
| 53 | .badge { |
| 54 | --border-width: 1px; |
| 55 | --padding-x: calc(var(--givewp-spacing-3) - var(--border-width)); |
| 56 | --padding-y: calc(var(--givewp-spacing-1) - var(--border-width)); |
| 57 | align-items: center; |
| 58 | background-color: var(--givewp-neutral-25); |
| 59 | border-radius: 1.5rem; |
| 60 | border: var(--border-width) solid var(--givewp-neutral-600); |
| 61 | color: var(--givewp-neutral-900); |
| 62 | display: inline-flex ; |
| 63 | font-size: 0.75rem; |
| 64 | font-weight: 600; |
| 65 | justify-content: center; |
| 66 | line-height: 1.5; |
| 67 | padding: var(--padding-y) var(--padding-x); |
| 68 | } |
| 69 | |
| 70 | .notice { |
| 71 | display: flex; |
| 72 | gap: var(--givewp-spacing-2); |
| 73 | padding: var(--givewp-spacing-3) var(--givewp-spacing-4); |
| 74 | border-radius: var(--givewp-radius-md); |
| 75 | background-color: #f2f9ff; |
| 76 | } |
| 77 | |
| 78 | .noticeContent { |
| 79 | display: flex; |
| 80 | flex-direction: column; |
| 81 | align-items: flex-start; |
| 82 | gap: var(--givewp-spacing-1); |
| 83 | } |
| 84 | |
| 85 | .noticeTitle{ |
| 86 | font-size: 0.875rem; |
| 87 | font-weight: 600; |
| 88 | line-height: 1.43; |
| 89 | color: #001326; |
| 90 | |
| 91 | } |
| 92 | |
| 93 | .noticeDescription { |
| 94 | font-size: 0.875rem; |
| 95 | font-weight: 500; |
| 96 | line-height: 1.43; |
| 97 | color: #001326; |
| 98 | |
| 99 | } |
| 100 |