Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

66 linhas
1.3 KiB

  1. import { container, title, grayColor } from "assets/jss/nextjs-material-kit.js";
  2. import headerLinksStyle from "assets/jss/nextjs-material-kit/components/headerLinksStyle.js";
  3. const navbarsStyle = theme => ({
  4. section: {
  5. padding: "70px 0",
  6. paddingTop: "0"
  7. },
  8. container,
  9. title: {
  10. ...title,
  11. marginTop: "30px",
  12. minHeight: "32px",
  13. textDecoration: "none"
  14. },
  15. navbar: {
  16. marginBottom: "-20px",
  17. zIndex: "100",
  18. position: "relative",
  19. overflow: "hidden",
  20. "& header": {
  21. borderRadius: "0"
  22. }
  23. },
  24. navigation: {
  25. backgroundPosition: "center center",
  26. backgroundSize: "cover",
  27. marginTop: "0",
  28. minHeight: "740px"
  29. },
  30. formControl: {
  31. [theme.breakpoints.down("md")]: {
  32. margin: "10px 0 0 15px !important",
  33. color: grayColor
  34. },
  35. margin: "10px 0 0 0 !important",
  36. paddingTop: "0"
  37. },
  38. inputRootCustomClasses: {
  39. margin: "0!important"
  40. },
  41. searchIcon: {
  42. width: "20px",
  43. height: "20px",
  44. color: "inherit"
  45. },
  46. ...headerLinksStyle(theme),
  47. img: {
  48. width: "40px",
  49. height: "40px",
  50. borderRadius: "50%"
  51. },
  52. imageDropdownButton: {
  53. [theme.breakpoints.down("md")]: {
  54. top: "0",
  55. margin: "5px 15px"
  56. },
  57. padding: "0px",
  58. top: "4px",
  59. borderRadius: "50%",
  60. marginLeft: "5px"
  61. }
  62. });
  63. export default navbarsStyle;