give
/
src
/
Campaigns
/
resources
/
admin
/
components
/
CampaignDetailsPage
/
Components
/
Notices
/
Notices.module.scss
give
/
src
/
Campaigns
/
resources
/
admin
/
components
/
CampaignDetailsPage
/
Components
/
Notices
Last commit date
ArchivedCampaignNotice.tsx
1 year ago
CampaignNotice.tsx
1 year ago
DefaultFormNotice.tsx
1 year ago
DraftCampaignPageNotice.tsx
1 year ago
Notices.module.scss
1 year ago
Notices.module.scss
58 lines
| 1 | .tooltip { |
| 2 | position: absolute; |
| 3 | z-index: 11; |
| 4 | width: 377px; |
| 5 | display: flex; |
| 6 | flex-direction: column; |
| 7 | justify-content: flex-start; |
| 8 | align-items: stretch; |
| 9 | gap: 16px; |
| 10 | padding: 16px 24px 24px; |
| 11 | border-radius: 8px; |
| 12 | box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.15); |
| 13 | border: solid 2px var(--givewp-neutral-400); |
| 14 | background-color: var(--givewp-shades-white); |
| 15 | |
| 16 | h3 { |
| 17 | padding-bottom: 8px; |
| 18 | margin: 0; |
| 19 | font-size: 1rem; |
| 20 | color: var(--givewp-neutral-900); |
| 21 | line-height: 1.5rem; |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | .defaultForm { |
| 26 | top: 420px; |
| 27 | left: 100px; |
| 28 | } |
| 29 | |
| 30 | .campaignSettings { |
| 31 | right: 20px; |
| 32 | top: 150px; |
| 33 | } |
| 34 | |
| 35 | .campaignList { |
| 36 | left: 20px; |
| 37 | top: 90px; |
| 38 | } |
| 39 | |
| 40 | .campaignForm { |
| 41 | left: 250px; |
| 42 | top: 150px; |
| 43 | } |
| 44 | |
| 45 | .close { |
| 46 | cursor: pointer; |
| 47 | position: absolute; |
| 48 | right: 13px; |
| 49 | top: 13px; |
| 50 | } |
| 51 | |
| 52 | .content { |
| 53 | font-size: 0.875rem; |
| 54 | color: var(--givewp-neutral-700); |
| 55 | font-weight: normal; |
| 56 | line-height: 1.25rem; |
| 57 | } |
| 58 |