diff options
author | David Gay <david@davidgay.org> | 2021-06-05 22:54:45 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-06-05 22:54:45 -0400 |
commit | 511b66a6580ba1ea879506f5579f43a2298dc361 (patch) | |
tree | 9e9a8fd586402a337b6a99d45435f5df826cf341 | |
parent | 37fe505bee9e35cab159eb6ba7b988d5eec77bd3 (diff) |
Increase min and max height of chat
-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> |