styles.module.scss
57 lines
| 1 | .header { |
| 2 | flex: 1; |
| 3 | display: flex; |
| 4 | justify-content: space-between; |
| 5 | align-items: center; |
| 6 | max-height: fit-content; |
| 7 | width: 100%; |
| 8 | margin-bottom: var(--givewp-spacing-6); |
| 9 | background-color: var(--givewp-shades-white); |
| 10 | |
| 11 | div { |
| 12 | display: flex; |
| 13 | flex-direction: column; |
| 14 | gap: .25rem; |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | .headerText { |
| 19 | margin: 0; |
| 20 | color: #1f2937; |
| 21 | font-size: 16px; |
| 22 | font-weight: 600; |
| 23 | line-height: 24px; |
| 24 | } |
| 25 | |
| 26 | .subHeaderText { |
| 27 | margin: 0; |
| 28 | color: #4b5563; |
| 29 | font-size: 14px; |
| 30 | font-weight: 400; |
| 31 | line-height: 20px; |
| 32 | } |
| 33 | |
| 34 | .action { |
| 35 | display: flex; |
| 36 | flex-direction: row; |
| 37 | justify-content: center; |
| 38 | align-items: center; |
| 39 | gap: 4px; |
| 40 | padding: 0.5rem 1rem; |
| 41 | height: 2.25rem; |
| 42 | text-decoration: none; |
| 43 | font-size: 0.875rem; |
| 44 | font-weight: 500; |
| 45 | line-height: 1.43; |
| 46 | color: #060c1a; |
| 47 | border-radius: 4px; |
| 48 | background-color: #e5e7eb; |
| 49 | border: none; |
| 50 | cursor: pointer; |
| 51 | |
| 52 | &:hover { |
| 53 | background-color: var(--givewp-neutral-200); |
| 54 | color: inherit; |
| 55 | } |
| 56 | } |
| 57 |