zoom.less 293 B

1234567891011121314151617181920
  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,
  9. > svg,
  10. > canvas {
  11. max-width: 100%;
  12. max-height: 100%;
  13. object-fit: contain;
  14. }
  15. }
  16. .swiper-slide-zoomed {
  17. cursor: move;
  18. }