選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

OffersNotFound.styled.js 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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: ${props => props.show ? "flex" : "none"};
  8. flex-direction: column;
  9. align-items: center;
  10. justify-content: center;
  11. height: 70vh;
  12. text-align: center;
  13. `;
  14. export const OffersNotFoundLogo = styled(Box)`
  15. @media (max-width: 600px) {
  16. svg {
  17. width: 100px;
  18. height: 100px;
  19. }
  20. }
  21. `;
  22. export const OffersNotFoundHeading = styled(Typography)`
  23. font-family: ${selectedTheme.fonts.textFont};
  24. font-size: 72px;
  25. font-weight: 700;
  26. color: ${selectedTheme.colors.primaryPurple};
  27. @media (max-width: 1370px) {
  28. line-height: 1.2;
  29. }
  30. @media (max-width: 600px) {
  31. font-size: 36px;
  32. }
  33. `;
  34. export const OffersNotFoundDescription = styled(Typography)`
  35. font-family: ${selectedTheme.fonts.textFont};
  36. font-size: 16px;
  37. color: #818181;
  38. margin: 9px 0 46px 0;
  39. text-align: center;
  40. @media (max-width: 600px) {
  41. font-size: 14px;
  42. }
  43. `;
  44. export const Button = styled(PrimaryButton)`
  45. width: 190px;
  46. height: 49px;
  47. font-weight: 600;
  48. letter-spacing: 1.5px;
  49. min-width: max-content;
  50. @media (max-width: 600px) {
  51. width: 180px;
  52. height: 44px;
  53. }
  54. `;