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 /app | |
parent | 37fe505bee9e35cab159eb6ba7b988d5eec77bd3 (diff) |
Increase min and max height of chat
Diffstat (limited to 'app')
-rw-r--r-- | app/views/layouts/application.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
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> |