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.

FirstPartOfRegistration.styled.js 754B

123456789101112131415161718192021222324252627282930313233
  1. import { Typography } from "@mui/material";
  2. import styled from "styled-components";
  3. import selectedTheme from "../../../../themes";
  4. export const FormContainer = styled.form`
  5. width: 335px;
  6. `;
  7. export const RegisterDescription = styled(Typography)`
  8. font-family: "Open Sans";
  9. font-style: normal;
  10. font-weight: 400;
  11. display: flex;
  12. align-items: center;
  13. color: ${selectedTheme.primaryGrayText};
  14. font-size: 12px;
  15. width: 100%;
  16. text-align: left;
  17. line-height: 16px;
  18. margin-top: 31px;
  19. margin-bottom: 2px;
  20. letter-spacing: 0.02em;
  21. @media (max-height: 800px) {
  22. margin-top: 14px;
  23. }
  24. `;
  25. export const ErrorMessage = styled(Typography)`
  26. color: red;
  27. font-family: "Open Sans";
  28. position: relative;
  29. top: -7px;
  30. font-size: 14px;
  31. `