give
/
src
/
Campaigns
/
Blocks
/
shared
/
components
/
EntitySelector
/
styles
/
reactSelectStyles.ts
reactSelectStyles.ts
25 lines
| 1 | export const reactSelectStyles = { |
| 2 | input: (provided, state) => ({ |
| 3 | ...provided, |
| 4 | height: '3rem', |
| 5 | }), |
| 6 | option: (provided, state) => ({ |
| 7 | ...provided, |
| 8 | paddingTop: '0.8rem', |
| 9 | paddingBottom: '0.8rem', |
| 10 | fontSize: '1rem', |
| 11 | }), |
| 12 | control: (provided, state) => ({ |
| 13 | ...provided, |
| 14 | fontSize: '1rem', |
| 15 | }), |
| 16 | }; |
| 17 | |
| 18 | export const reactSelectThemeStyles = (theme) => ({ |
| 19 | ...theme, |
| 20 | colors: { |
| 21 | ...theme.colors, |
| 22 | primary: '#27ae60', |
| 23 | }, |
| 24 | }); |
| 25 |