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.

OffersNotFound.styled.js 843B

123456789101112131415161718192021222324252627282930313233
  1. import styled from "styled-components";
  2. import { Typography } from "@mui/material";
  3. import { Box } from "@mui/system";
  4. import selectedTheme from "../../../themes";
  5. import { PrimaryButton } from "../../Buttons/PrimaryButton/PrimaryButton";
  6. export const OffersNotFoundContainer = styled(Box)`
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. justify-content: center;
  11. height: 70vh;
  12. `;
  13. export const OffersNotFoundHeading = styled(Typography)`
  14. font-family: "Open Sans";
  15. font-size: 72px;
  16. font-weight: 700;
  17. color: ${selectedTheme.primaryPurple};
  18. `;
  19. export const OffersNotFoundDescription = styled(Typography)`
  20. font-family: "Open Sans";
  21. font-size: 16px;
  22. color: #818181;
  23. margin: 9px 0 46px 0;
  24. text-align: center;
  25. `;
  26. export const Button = styled(PrimaryButton)`
  27. font-weight: 600;
  28. letter-spacing: 1.5px;
  29. `;