Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

30 lignes
658 B

  1. const cardStyle = {
  2. card: {
  3. border: "0",
  4. marginBottom: "30px",
  5. marginTop: "30px",
  6. borderRadius: "6px",
  7. color: "rgba(0, 0, 0, 0.87)",
  8. background: "#fff",
  9. width: "100%",
  10. boxShadow:
  11. "0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12)",
  12. position: "relative",
  13. display: "flex",
  14. flexDirection: "column",
  15. minWidth: "0",
  16. wordWrap: "break-word",
  17. fontSize: ".875rem",
  18. transition: "all 300ms linear"
  19. },
  20. cardPlain: {
  21. background: "transparent",
  22. boxShadow: "none"
  23. },
  24. cardCarousel: {
  25. overflow: "hidden"
  26. }
  27. };
  28. export default cardStyle;