Você não pode selecionar mais de 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.

AboutHeader.styled.js 734B

123456789101112131415161718192021222324252627
  1. import { Box, styled, Typography } from "@mui/material";
  2. import selectedTheme from "../../../themes";
  3. export const AboutHeaderContainer = styled(Box)`
  4. margin: 72px;
  5. `;
  6. export const AboutHeaderTitle = styled(Typography)`
  7. font-family: "DM Sans";
  8. font-style: normal;
  9. font-weight: 700;
  10. font-size: 72px;
  11. line-height: 98px;
  12. color: ${selectedTheme.primaryPurple};
  13. `;
  14. export const AboutHeaderParagraph = styled(Typography)`
  15. font-family: "DM Sans";
  16. font-style: normal;
  17. font-weight: 400;
  18. font-size: 16px;
  19. line-height: 22px;
  20. color: ${selectedTheme.primaryGrayText};
  21. `;
  22. export const AboutHeaderLine = styled(Box)`
  23. border-top: 1px solid ${selectedTheme.iconYellowColor};
  24. width: 90px;
  25. margin-bottom: 26px;
  26. `;