give
/
src
/
Subscriptions
/
resources
/
admin
/
components
/
SubscriptionDetailsPage
/
Tabs
/
Overview
/
SubscriptionSummaryGrid
/
styles.module.scss
give
/
src
/
Subscriptions
/
resources
/
admin
/
components
/
SubscriptionDetailsPage
/
Tabs
/
Overview
/
SubscriptionSummaryGrid
Last commit date
Icons.tsx
10 months ago
index.tsx
10 months ago
styles.module.scss
10 months ago
styles.module.scss
70 lines
| 1 | |
| 2 | .paymentMethod { |
| 3 | align-items: center; |
| 4 | display: flex; |
| 5 | font-size: 1.125rem; |
| 6 | font-weight: 600; |
| 7 | gap: var(--givewp-spacing-2); |
| 8 | line-height: calc(28 / 18); |
| 9 | } |
| 10 | |
| 11 | .donationType { |
| 12 | display: flex; |
| 13 | justify-content: space-between; |
| 14 | align-items: center; |
| 15 | width: 100%; |
| 16 | } |
| 17 | |
| 18 | .date { |
| 19 | font-weight: 500; |
| 20 | font-size: 1.125rem; |
| 21 | line-height: calc(28 / 18); |
| 22 | color: var(--givewp-neutral-900); |
| 23 | } |
| 24 | |
| 25 | .gatewayCard { |
| 26 | display: flex; |
| 27 | flex-direction: column; |
| 28 | justify-content: var(--givewp-spacing-2); |
| 29 | } |
| 30 | |
| 31 | .gatewayLink { |
| 32 | display: flex; |
| 33 | align-items: center; |
| 34 | gap: var(--givewp-spacing-2); |
| 35 | font-family: Inter; |
| 36 | font-size: 0.875rem; |
| 37 | font-weight: 500; |
| 38 | font-stretch: normal; |
| 39 | font-style: normal; |
| 40 | line-height: 1.43; |
| 41 | letter-spacing: normal; |
| 42 | text-align: left; |
| 43 | } |
| 44 | |
| 45 | .badge { |
| 46 | align-items: center; |
| 47 | border-radius: var(--givewp-rounded-full); |
| 48 | border: 1px solid var(--givewp-neutral-900); |
| 49 | color: var(--givewp-neutral-900); |
| 50 | display: flex; |
| 51 | font-size: 0.75rem; |
| 52 | font-weight: 600; |
| 53 | gap: var(--givewp-spacing-1); |
| 54 | justify-content: center; |
| 55 | line-height: 1.5; |
| 56 | padding: var(--givewp-spacing-1) var(--givewp-spacing-3); |
| 57 | |
| 58 | &.limited { |
| 59 | color: #d98715; |
| 60 | background-color: #fffaf2; |
| 61 | border-color: #d98715; |
| 62 | } |
| 63 | |
| 64 | &.unlimited { |
| 65 | color: #459948; |
| 66 | background-color: #f2fff3; |
| 67 | border-color: #459948; |
| 68 | } |
| 69 | } |
| 70 |