zoom.scss 315 B

123456789101112131415161718192021
  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. touch-action: none;
  19. }