give
/
src
/
Campaigns
/
Blocks
/
CampaignComments
/
resources
/
shared
/
components
/
EmptyState
/
styles.scss
give
/
src
/
Campaigns
/
Blocks
/
CampaignComments
/
resources
/
shared
/
components
/
EmptyState
Last commit date
index.tsx
7 months ago
styles.scss
1 year ago
styles.scss
37 lines
| 1 | .givewp-campaign-comments-block-empty-state { |
| 2 | display: flex; |
| 3 | flex-direction: column; |
| 4 | align-items: center; |
| 5 | justify-content: center; |
| 6 | padding: var(--givewp-spacing-6); |
| 7 | background-color: var(--givewp-shades-white); |
| 8 | border-radius: 0.5rem; |
| 9 | border: 1px solid var(--givewp-neutral-50); |
| 10 | |
| 11 | &__details { |
| 12 | display: flex; |
| 13 | flex-direction: column; |
| 14 | align-items: center; |
| 15 | justify-content: center; |
| 16 | gap: var(--givewp-spacing-1); |
| 17 | margin: .875rem 0; |
| 18 | } |
| 19 | |
| 20 | &__title { |
| 21 | margin: 0; |
| 22 | font-size: 1rem; |
| 23 | font-weight: 500; |
| 24 | color: var(--givewp-neutral-700); |
| 25 | } |
| 26 | |
| 27 | &__description { |
| 28 | margin: 0; |
| 29 | font-size: .875rem; |
| 30 | line-height: 1.43; |
| 31 | color: var(--givewp-neutral-700); |
| 32 | } |
| 33 | |
| 34 | &__icon { |
| 35 | } |
| 36 | } |
| 37 |