styles.module.scss
41 lines
| 1 | $breakpoint-desktop: 900px; |
| 2 | |
| 3 | .summaryTableContainer { |
| 4 | display: flex; |
| 5 | flex-direction: column; |
| 6 | gap: var(--givewp-spacing-2); |
| 7 | width: 100%; |
| 8 | } |
| 9 | |
| 10 | .summaryPanel, .summaryTable { |
| 11 | display: flex; |
| 12 | justify-content: space-between; |
| 13 | align-items: center; |
| 14 | width: 100%; |
| 15 | border-bottom: 1px solid #f3f4f6; |
| 16 | background-color: var(--givewp-shades-white); |
| 17 | |
| 18 | @media (max-width: $breakpoint-desktop) { |
| 19 | flex-wrap: wrap; |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | .summaryTableLabel { |
| 24 | flex-grow: 1; |
| 25 | font-size: 1rem; |
| 26 | font-weight: 500; |
| 27 | line-height: 1.5; |
| 28 | color: #4b5563; |
| 29 | padding: var(--givewp-spacing-3) 0; |
| 30 | margin: 0; |
| 31 | } |
| 32 | |
| 33 | .summaryTableValue { |
| 34 | font-size: 1rem; |
| 35 | font-weight: 600; |
| 36 | line-height: 1.5; |
| 37 | color: #1f2937; |
| 38 | padding: var(--givewp-spacing-3) 0; |
| 39 | text-align: right; |
| 40 | } |
| 41 |