Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. const colorStyles = {
  2. singleValue: (styles, { data }) => {
  3. return {
  4. ...styles,
  5. color: data.color ? data.color : '#000000',
  6. }
  7. },
  8. menu: styles => {
  9. return {
  10. ...styles,
  11. paddingTop: '0',
  12. paddingBottom: '0',
  13. backgroundColor: 'white',
  14. boxShadow: '0px 3px 6px #0000000C',
  15. borderRadius: '4px',
  16. border: '1px solid #DFE1E5',
  17. marginTop: '15px',
  18. zIndex:'10000'
  19. }
  20. },
  21. menuList: styles => {
  22. return {
  23. ...styles,
  24. paddingTop: '0',
  25. paddingBottom: '0',
  26. zIndex:'10000'
  27. }
  28. },
  29. option: (styles, { data, isFocused, isSelected }) => {
  30. return {
  31.  
  32. color: data.color ? data.color : '#484848',
  33. backgroundColor: isSelected && '#E7F0FB',
  34. padding: '10px',
  35. borderBottom: '1px solid #DFE1E5',
  36. zIndex:'10000',
  37. ':active': {
  38. backgroundColor: isSelected && '#E7F0FB'
  39. }
  40. }
  41. }
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement