zoom.less 381 B

1234567891011121314151617181920212223
  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. > img,
  10. > svg,
  11. > canvas {
  12. max-width: 100%;
  13. max-height: 100%;
  14. object-fit: contain;
  15. }
  16. }
  17. /* Zoom container styles end */
  18. .swiper-slide-zoomed {
  19. cursor: move;
  20. touch-action: none;
  21. }