give
/
src
/
Promotions
/
WelcomeBanner
/
resources
/
js
/
app
/
components
/
SpotLight
/
styles.scss
give
/
src
/
Promotions
/
WelcomeBanner
/
resources
/
js
/
app
/
components
/
SpotLight
Last commit date
index.tsx
2 years ago
styles.scss
2 years ago
styles.scss
38 lines
| 1 | .givewp-welcome-banner-spotlight-container { |
| 2 | box-sizing: border-box; |
| 3 | position: relative; |
| 4 | flex: 1; |
| 5 | display: flex; |
| 6 | flex-direction: column; |
| 7 | justify-content: space-between; |
| 8 | flex-wrap: wrap; |
| 9 | min-width: 300px; |
| 10 | border-radius: 4px; |
| 11 | border: solid 1px var(--givewp-blue-500); |
| 12 | background-color: var(--givewp-blue-25); |
| 13 | padding: var(--givewp-spacing-3); |
| 14 | |
| 15 | &__details { |
| 16 | flex: 1; |
| 17 | |
| 18 | > h2 { |
| 19 | font-size: 0.875rem; |
| 20 | font-weight: bold; |
| 21 | line-height: 1.4; |
| 22 | text-align: left; |
| 23 | margin: var(--givewp-spacing-4) 0 var(--givewp-spacing-2); |
| 24 | } |
| 25 | |
| 26 | > p { |
| 27 | font-size: 0.75rem; |
| 28 | font-weight: normal; |
| 29 | font-stretch: normal; |
| 30 | font-style: normal; |
| 31 | line-height: 1.4; |
| 32 | letter-spacing: normal; |
| 33 | text-align: left; |
| 34 | margin: 0; |
| 35 | } |
| 36 | } |
| 37 | } |
| 38 |