zoom.css 434 B

123456789101112131415161718192021
  1. /* Zoom container styles start */
  2. .swiper-zoom-container {
  3. width: 100%;
  4. height: 100%;
  5. display: flex;
  6. justify-content: center;
  7. align-items: center;
  8. text-align: center;
  9. }
  10. .swiper-zoom-container > img,
  11. .swiper-zoom-container > svg,
  12. .swiper-zoom-container > canvas {
  13. max-width: 100%;
  14. max-height: 100%;
  15. object-fit: contain;
  16. }
  17. /* Zoom container styles end */
  18. .swiper-slide-zoomed {
  19. cursor: move;
  20. touch-action: none;
  21. }