| 123456789101112131415161718192021222324252627282930313233 |
- import styled from "styled-components";
- import { Typography } from "@mui/material";
- import { Box } from "@mui/system";
- import selectedTheme from "../../../themes";
- import { PrimaryButton } from "../../Buttons/PrimaryButton/PrimaryButton";
-
- export const OffersNotFoundContainer = styled(Box)`
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- height: 70vh;
- `;
-
- export const OffersNotFoundHeading = styled(Typography)`
- font-family: "Open Sans";
- font-size: 72px;
- font-weight: 700;
- color: ${selectedTheme.primaryPurple};
- `;
-
- export const OffersNotFoundDescription = styled(Typography)`
- font-family: "Open Sans";
- font-size: 16px;
- color: #818181;
- margin: 9px 0 46px 0;
- text-align: center;
- `;
-
- export const Button = styled(PrimaryButton)`
- font-weight: 600;
- letter-spacing: 1.5px;
- `;
|