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