zoom.scss 289 B

123456789101112131415161718
  1. .swiper-zoom-container {
  2. width: 100%;
  3. height: 100%;
  4. display: flex;
  5. justify-content: center;
  6. align-items: center;
  7. text-align: center;
  8. > img, > svg, > canvas {
  9. max-width: 100%;
  10. max-height: 100%;
  11. object-fit: contain;
  12. }
  13. }
  14. .swiper-slide-zoomed {
  15. cursor: move;
  16. }