components
4 years ago
hooks
4 years ago
admin-donation-forms.module.scss
4 years ago
admin-donation-forms.tsx
4 years ago
api.ts
4 years ago
admin-donation-forms.module.scss
42 lines
| 1 | :global { |
| 2 | :root { |
| 3 | --give-primary-color: #69b868; |
| 4 | } |
| 5 | |
| 6 | .post-type-give_forms #wpbody { |
| 7 | box-sizing: border-box; |
| 8 | padding-left: 0; |
| 9 | } |
| 10 | |
| 11 | .post-type-give_forms #wpbody-content { |
| 12 | box-sizing: border-box; |
| 13 | } |
| 14 | |
| 15 | .post-type-give_forms #wpbody::after { |
| 16 | all: revert; |
| 17 | } |
| 18 | |
| 19 | .give-visually-hidden { |
| 20 | position: absolute; |
| 21 | width: 1px; |
| 22 | height: 1px; |
| 23 | padding: 0; |
| 24 | margin: -1px; |
| 25 | overflow: hidden; |
| 26 | clip: rect(0, 0, 0, 0); |
| 27 | white-space: nowrap; |
| 28 | border-width: 0; |
| 29 | } |
| 30 | |
| 31 | #give-admin-donation-forms-root { |
| 32 | box-sizing: border-box; |
| 33 | color: #333; |
| 34 | font-family: Open Sans, system-ui, sans-serif; |
| 35 | font-size: 1rem; |
| 36 | |
| 37 | *, ::before, ::after { |
| 38 | box-sizing: inherit; |
| 39 | } |
| 40 | } |
| 41 | } |
| 42 |