diff --git a/app/javascript/mastodon/components/media_gallery.js b/app/javascript/mastodon/components/media_gallery.js index 71436500a..9310e7c96 100644 --- a/app/javascript/mastodon/components/media_gallery.js +++ b/app/javascript/mastodon/components/media_gallery.js @@ -168,11 +168,13 @@ class Item extends React.PureComponent { } if (originalWidth > originalHeight) { - imageStyle.height = '100%'; - imageStyle.width = 'auto'; + imageStyle.height = '100%'; + imageStyle.width = 'auto'; + imageStyle.minWidth = '100%'; } else { - imageStyle.height = 'auto'; - imageStyle.width = '100%'; + imageStyle.height = 'auto'; + imageStyle.width = '100%'; + imageStyle.minHeight = '100%'; } imageStyle.top = vShift;