Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

32 строки
608 B

  1. import { container, title } from "assets/jss/nextjs-material-kit.js";
  2. import customCheckboxRadioSwitch from "assets/jss/nextjs-material-kit/customCheckboxRadioSwitch.js";
  3. const basicsStyle = {
  4. sections: {
  5. padding: "70px 0"
  6. },
  7. container,
  8. title: {
  9. ...title,
  10. marginTop: "30px",
  11. minHeight: "32px",
  12. textDecoration: "none"
  13. },
  14. space50: {
  15. height: "50px",
  16. display: "block"
  17. },
  18. space70: {
  19. height: "70px",
  20. display: "block"
  21. },
  22. icons: {
  23. width: "17px",
  24. height: "17px",
  25. color: "#FFFFFF"
  26. },
  27. ...customCheckboxRadioSwitch
  28. };
  29. export default basicsStyle;