You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PrivacyPolicySection.styled.js 672B

123456789101112131415161718192021222324
  1. import { Box, Typography } from "@mui/material";
  2. import styled from "styled-components";
  3. import selectedTheme from "../../../themes";
  4. export const PrivacyPolicySectionContainer = styled(Box)`
  5. margin-top: 25px;
  6. `;
  7. export const PrivacyPolicySectionTitle = styled(Typography)`
  8. font-family: "Open Sans";
  9. font-style: normal;
  10. font-weight: 600;
  11. font-size: 24px;
  12. line-height: 33px;
  13. color: ${selectedTheme.primaryPurple};
  14. margin-bottom: 18px;
  15. `;
  16. export const PrivacyPolicySectionText = styled(Typography)`
  17. font-family: "Open Sans";
  18. font-style: normal;
  19. font-weight: 400;
  20. font-size: 16px;
  21. line-height: 22px;
  22. color: ${selectedTheme.primaryGrayText};
  23. `;