_products.scss 473 B

12345678910111213141516171819202122
  1. .product-item {
  2. @media (min-width: 992px) {
  3. .product-item-title {
  4. position: relative;
  5. z-index: 1;
  6. margin-bottom: -3rem;
  7. }
  8. .product-item-img {
  9. position: relative;
  10. z-index: 0;
  11. max-width: 60vw;
  12. }
  13. .product-item-description {
  14. position: relative;
  15. z-index: 1;
  16. margin-top: -3rem;
  17. max-width: 50vw;
  18. }
  19. }
  20. }