Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

49 wiersze
855 B

  1. import {
  2. primaryColor,
  3. warningColor,
  4. dangerColor,
  5. successColor,
  6. infoColor,
  7. roseColor
  8. } from "assets/jss/nextjs-material-kit.js";
  9. const badgeStyle = {
  10. badge: {
  11. marginRight: "3px",
  12. borderRadius: "12px",
  13. padding: "5px 12px",
  14. textTransform: "uppercase",
  15. fontSize: "10px",
  16. fontWeight: "500",
  17. lineHeight: "1",
  18. color: "#fff",
  19. textAlign: "center",
  20. whiteSpace: "nowrap",
  21. verticalAlign: "baseline",
  22. display: "inline-block"
  23. },
  24. primary: {
  25. backgroundColor: primaryColor
  26. },
  27. warning: {
  28. backgroundColor: warningColor
  29. },
  30. danger: {
  31. backgroundColor: dangerColor
  32. },
  33. success: {
  34. backgroundColor: successColor
  35. },
  36. info: {
  37. backgroundColor: infoColor
  38. },
  39. rose: {
  40. backgroundColor: roseColor
  41. },
  42. gray: {
  43. backgroundColor: "#6c757d"
  44. }
  45. };
  46. export default badgeStyle;