diff --git a/Changelog.md b/Changelog.md index a13c9434e..9512b766d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -9,6 +9,7 @@ * Fix style of contacts in profile sidebar [#4451](https://github.com/diaspora/pull/4451) * Fix profile mobile when logged out [#4464](https://github.com/diaspora/pull/4464) * Fix preview with more than one mention [#4450](https://github.com/diaspora/diaspora/issues/4450) +* Fix size of images in the SPV [#4471](https://github.com/diaspora/diaspora/pull/4471) ## Features * Add oEmbed content to the mobile view [#4343](https://github.com/diaspora/diaspora/pull/4353) diff --git a/app/assets/stylesheets/single-post-view.css.scss b/app/assets/stylesheets/single-post-view.css.scss index bdf501f07..6baaa1f52 100644 --- a/app/assets/stylesheets/single-post-view.css.scss +++ b/app/assets/stylesheets/single-post-view.css.scss @@ -68,12 +68,18 @@ padding-bottom: 10px; text-align: center; img { - &.big_stream_photo { display: block; } - display: inline; + &.big_stream_photo { + display: block; + max-width: 90%; + } + &.thumb_small { + display: inline; + max-width: 50px; + max-height: 50px; + } margin-left: auto; margin-right: auto; padding-bottom: 5px; - max-width: 90%; } } .oembed {