diff --git a/Changelog.md b/Changelog.md index f9bff69d7..a138049d2 100644 --- a/Changelog.md +++ b/Changelog.md @@ -97,6 +97,7 @@ This is disabled by default since it requires the installation of additional pac * Fix a few issues on Bootstrap pages [#5401](https://github.com/diaspora/diaspora/pull/5401) * Improve handling of the `more` link on mobile stream pages [#5400](https://github.com/diaspora/diaspora/pull/5400) * Fix prefilling publisher after getting started [#5442](https://github.com/diaspora/diaspora/pull/5442) +* Fix overflow in profile sidebar [#5450](https://github.com/diaspora/diaspora/pull/5450) ## Features * Don't pull jQuery from a CDN by default [#5105](https://github.com/diaspora/diaspora/pull/5105) diff --git a/app/assets/stylesheets/profile.css.scss b/app/assets/stylesheets/profile.css.scss index 00d566a87..2e0a0286c 100644 --- a/app/assets/stylesheets/profile.css.scss +++ b/app/assets/stylesheets/profile.css.scss @@ -112,6 +112,8 @@ ul#profile_information { margin: 0; list-style: none; + overflow-x: hidden; + word-wrap: break-word; > li { margin-bottom: 2em; h4 { font-weight: bold; }