_fields.scss
1 year ago
_form.scss
2 years ago
_groups.scss
2 years ago
_header.scss
2 years ago
_icons.scss
2 years ago
_iframe.scss
2 years ago
_multi-step-form.scss
1 year ago
_sections.scss
2 years ago
_sections.scss
33 lines
| 1 | // add a little styling to section legends |
| 2 | .givewp-layouts-section { |
| 3 | &__fieldset { |
| 4 | gap: var(--givewp-spacing-6); |
| 5 | |
| 6 | &__legend { |
| 7 | legend { |
| 8 | font-size: clamp(var(--givewp-spacing-5), 1.28205vw, var(--givewp-spacing-6)); |
| 9 | font-weight: bold; |
| 10 | color: var(--givewp-grey-900); |
| 11 | line-height: 1.6; |
| 12 | margin-block-end: var(--givewp-spacing-3); |
| 13 | } |
| 14 | |
| 15 | p { |
| 16 | margin: 0; |
| 17 | color: var(--givewp-grey-700); |
| 18 | line-height: 1.5; |
| 19 | } |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | button:focus { |
| 24 | box-shadow: none; |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | .givewp-section-nodes { |
| 29 | display: flex; |
| 30 | flex-direction: column; |
| 31 | gap: var(--givewp-spacing-6); |
| 32 | } |
| 33 |