Browse Source

Fix images in older MacOS Safari

pull/165/head
Jānis Skarnelis 3 years ago
parent
commit
f17bd0489f
  1. 2
      dist/fancybox.css
  2. 6
      src/Fancybox/plugins/Image/Image.scss

2
dist/fancybox.css

File diff suppressed because one or more lines are too long

6
src/Fancybox/plugins/Image/Image.scss

@ -20,6 +20,12 @@
overflow: visible;
touch-action: none;
/* Fix Mac OS Safari 11 - 13 */
.fancybox__content {
flex-direction: row;
flex-wrap: wrap;
}
.fancybox__image {
max-width: 100%;
max-height: 100%;

Loading…
Cancel
Save