styles.module.scss
42 lines
| 1 | .container { |
| 2 | display: grid; |
| 3 | grid-template-columns: repeat(2, 1fr); |
| 4 | gap: 1rem; |
| 5 | margin: 0; |
| 6 | width: 100%; |
| 7 | height: auto; |
| 8 | min-height: fit-content; |
| 9 | } |
| 10 | |
| 11 | .section { |
| 12 | display: flex; |
| 13 | flex-direction: column; |
| 14 | width: 100%; |
| 15 | margin: 0 !important; |
| 16 | padding: 0; |
| 17 | } |
| 18 | |
| 19 | .heading { |
| 20 | margin: 0; |
| 21 | font-size: 0.875rem; |
| 22 | font-weight: 500; |
| 23 | line-height: 1.43; |
| 24 | color: #1f2937; |
| 25 | } |
| 26 | |
| 27 | .card { |
| 28 | display: flex; |
| 29 | flex-direction: column; |
| 30 | align-items: flex-start; |
| 31 | gap: var(--givewp-spacing-2); |
| 32 | width: 100%; |
| 33 | height: auto; |
| 34 | background: var(--givewp-shades-white); |
| 35 | border: 1px solid var(--givewp-neutral-50); |
| 36 | border-radius: 0.5rem; |
| 37 | padding: var(--givewp-spacing-4); |
| 38 | } |
| 39 | |
| 40 | .card p:last-child { |
| 41 | margin: 0; |
| 42 | } |