Skip to content

Commit

Permalink
done
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Chebanenko authored and Nikita Chebanenko committed Sep 21, 2023
1 parent 570707d commit e850625
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions src/pages/Products/Products.styled.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,30 @@ export const ProductPageContainer = styled.div`
gap: 32px;
padding: 72px 32px 48px 32px;
}
${mq.desktop} {
padding: 68px 81px 81px 96px;
background: linear-gradient(89deg, #040404 1.1%, rgba(4, 4, 4, 0) 70.79%),
url(${imgProducts.imgDx1});
gap: 28px;
background: linear-gradient(89deg, #040404 1.1%, rgba(4, 4, 4, 0) 70.79%);
background-repeat: no-repeat;
background-position: 100% 0;
background-size: 428px 716px;
background-image: url(${imgProducts.imgDx1});
gap: 28px;
${
'' /* @media (min-device-pixel-ratio: 2),
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi),
(min-resolution: 2dppx) {
& {
background-image: url(${imgProducts.imgDx2});
}
} */
}
}
`;

Expand Down

0 comments on commit e850625

Please sign in to comment.