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.

ProfileOffersHeaderSkeleton.styled.js 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. import { Box } from "@mui/material";
  2. import styled from "styled-components";
  3. import {
  4. SkeletonBackgroundColor,
  5. SkeletonItemBackgroundColor,
  6. } from "../../../Cards/ProfileCard/SkeletonProfileCard/SkeletonProfileCard.styled";
  7. export const ProfileOffersHeaderSkeletonContainer = styled(Box)`
  8. display: flex;
  9. flex-direction: column;
  10. gap: 18px;
  11. @media (max-width: 600px) {
  12. margin-bottom: 18px;
  13. }
  14. `;
  15. export const ProfileOffersHeaderSkeletonGroupOne = styled(Box)`
  16. display: flex;
  17. flex-direction: row;
  18. justify-content: space-between;
  19. `;
  20. export const ProfileOffersHeaderSkeletonGroupSecond = styled(
  21. SkeletonBackgroundColor
  22. )`
  23. display: flex;
  24. flex-direction: row;
  25. justify-content: space-between;
  26. padding: 15.5px;
  27. `;
  28. export const ProfileOffersHeaderSkeletonLineOne = styled(
  29. SkeletonBackgroundColor
  30. )`
  31. width: 148px;
  32. height: 18px;
  33. @media (max-width: 600px) {
  34. width: 72px;
  35. height: 18px;
  36. position: relative;
  37. top: 5px;
  38. }
  39. `;
  40. export const ProfileOffersHeaderSkeletonLineSecond = styled(
  41. SkeletonBackgroundColor
  42. )`
  43. width: 209px;
  44. height: 34px;
  45. @media (max-width: 600px) {
  46. width: 137px;
  47. height: 29px;
  48. }
  49. `;
  50. export const ProfileOffersHeaderSkeletonLineThird = styled(
  51. SkeletonItemBackgroundColor
  52. )`
  53. width: 120px;
  54. margin-top: 2px;
  55. height: 14px;
  56. @media (max-width: 600px) {
  57. width: 108px;
  58. }
  59. `;
  60. export const ProfileOffersHeaderSkeletonLineForth = styled(
  61. SkeletonItemBackgroundColor
  62. )`
  63. width: 18px;
  64. height: 18px;
  65. @media (max-width: 600px) {
  66. display: none;
  67. }
  68. `;