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

FirstPartOfRegistration.styled.js 548B

12345678910111213141516171819202122
  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. `;