You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

48 lines
1.1 KiB

  1. const popoverStyles = {
  2. popover: {
  3. padding: "0",
  4. boxShadow:
  5. "0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2)",
  6. lineHeight: "1.5em",
  7. background: "#fff",
  8. border: "none",
  9. borderRadius: "3px",
  10. display: "block",
  11. maxWidth: "276px",
  12. fontFamily: '"Roboto", "Helvetica", "Arial", sans-serif',
  13. fontStyle: "normal",
  14. fontWeight: "400",
  15. textAlign: "start",
  16. textDecoration: "none",
  17. textShadow: "none",
  18. textTransform: "none",
  19. letterSpacing: "normal",
  20. wordBreak: "normal",
  21. wordSpacing: "normal",
  22. whiteSpace: "normal",
  23. lineBreak: "auto",
  24. fontSize: "0.875rem",
  25. wordWrap: "break-word"
  26. },
  27. popoverBottom: {
  28. marginTop: "5px"
  29. },
  30. popoverHeader: {
  31. backgroundColor: "#fff",
  32. border: "none",
  33. padding: "15px 15px 5px",
  34. fontSize: "1.125rem",
  35. margin: "0",
  36. color: "#555",
  37. borderTopLeftRadius: "calc(0.3rem - 1px)",
  38. borderTopRightRadius: "calc(0.3rem - 1px)"
  39. },
  40. popoverBody: {
  41. padding: "10px 15px 15px",
  42. lineHeight: "1.4",
  43. color: "#555"
  44. }
  45. };
  46. export default popoverStyles;