diff --git a/Changelog.md b/Changelog.md index bf184dd56..f0d6bc740 100644 --- a/Changelog.md +++ b/Changelog.md @@ -7,7 +7,6 @@ * Correctly skip setting sidekiq logfile on Heroku [#6500](https://github.com/diaspora/diaspora/pull/6500) * Fix notifications for interactions by non-contacts [#6498](https://github.com/diaspora/diaspora/pull/6498) * Fix issue where the publisher was broken on profile pages [#6503](https://github.com/diaspora/diaspora/pull/6503) -* Limit flash message width on small devices [#6529](https://github.com/diaspora/diaspora/pull/6529) ## Features diff --git a/app/assets/stylesheets/_flash_messages.scss b/app/assets/stylesheets/_flash_messages.scss index 950bfa6c8..e4b4e46c4 100644 --- a/app/assets/stylesheets/_flash_messages.scss +++ b/app/assets/stylesheets/_flash_messages.scss @@ -50,11 +50,4 @@ background-color: #CA410B; border-color: darken(#CA410B, 10%); } - - @media (max-width: $grid-float-breakpoint-max) { - .flash-message { - max-width: 80%; - min-width: 80%; - } - } }