Fix cover behaviour of thumbnails that are wider than taller (#6678)

th-downstream
Eugen Rochko 7 years ago committed by GitHub
parent 03b03fa30a
commit 62d18a3f9b

@ -167,6 +167,14 @@ class Item extends React.PureComponent {
vShift = shiftToPoint(widthRatio, (containerHeight * (height / 100)), originalHeight, focusY, true);
}
if (originalWidth > originalHeight) {
imageStyle.height = '100%';
imageStyle.width = 'auto';
} else {
imageStyle.height = 'auto';
imageStyle.width = '100%';
}
imageStyle.top = vShift;
imageStyle.left = hShift;
} else {

Loading…
Cancel
Save