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

RegisterSuccessful.styled.js 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. import { Container, Typography } from "@mui/material";
  2. import styled from "styled-components";
  3. import selectedTheme from "../../../themes";
  4. export const RegisterSuccessfulContainer = styled(Container)`
  5. margin-top: 150px;
  6. display: flex;
  7. flex-direction: column;
  8. align-items: center;
  9. width: 536px;
  10. height: 500px;
  11. padding: 0;
  12. & div {
  13. height: 500px !important;
  14. }
  15. & div canvas {
  16. width: 500px;
  17. }
  18. @media (max-width: 600px) {
  19. width: 100%;
  20. margin-top: 70px;
  21. & div {
  22. width: 230px !important;
  23. }
  24. }
  25. `;
  26. export const RegisterTitle = styled(Typography)`
  27. font-family: ${selectedTheme.fonts.textFont};
  28. width: 430px;
  29. text-align: center;
  30. flex: 1;
  31. font-style: normal;
  32. font-weight: 700;
  33. font-size: 39px;
  34. line-height: 48px;
  35. color: ${selectedTheme.colors.primaryPurple};
  36. margin-top: 32px;
  37. @media (max-width: 600px) {
  38. width: 303px;
  39. font-size: 36px;
  40. line-height: 44px;
  41. }
  42. `;
  43. export const RegisterDescription = styled(Typography)`
  44. font-family: ${selectedTheme.fonts.textFont};
  45. margin-top: 36px;
  46. width: 430px;
  47. font-style: normal;
  48. font-weight: 400;
  49. font-size: 25px;
  50. line-height: 36px;
  51. display: block;
  52. align-items: center;
  53. text-align: center;
  54. color: ${selectedTheme.colors.primaryGrayText};
  55. margin-bottom: 20px;
  56. @media (max-width: 600px) {
  57. width: 241px;
  58. font-size: 14px;
  59. line-height: 19px;
  60. margin-top: 9px;
  61. }
  62. `;