diff options
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | app/views/layouts/application.html.erb | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 30ca085..78c43e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file. ### UI - Adjusted chat box so scrollbar lines up with main box scrollbar. - Reduced footer (copyright) padding and made the rest of the content fill in that space. +- Increased min height and max height of chat. ## [0.1.7.1] - 2021-06-05 diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 7ac73b1..309dc29 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -26,7 +26,7 @@ </div> <% if user_signed_in? %> <div id="chat" class="overflow-y-auto" - style="min-height: 10%; max-height: 20%" + style="min-height: 15%; max-height: 25%" data-turbolinks-permanent> <%= render "chat" %> </div> |