diff options
author | David Gay <david@davidgay.org> | 2021-06-05 22:53:33 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-06-05 22:53:33 -0400 |
commit | 37fe505bee9e35cab159eb6ba7b988d5eec77bd3 (patch) | |
tree | 3e396f668b6360ef66a8ab149fe4ffa86f485e96 | |
parent | 6bb5b9c6a654dd2cd55a1eeadfd7f889561578ac (diff) |
Reduce footer padding and made the rest of the content fill in that space
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | app/javascript/stylesheets/core.css | 2 | ||||
-rw-r--r-- | app/views/layouts/application.html.erb | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 59a3b04..30ca085 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,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. ## [0.1.7.1] - 2021-06-05 diff --git a/app/javascript/stylesheets/core.css b/app/javascript/stylesheets/core.css index f002580..2805db9 100644 --- a/app/javascript/stylesheets/core.css +++ b/app/javascript/stylesheets/core.css @@ -15,7 +15,7 @@ } .game-container-column { - max-height: calc(100vh - 9rem); + max-height: calc(100vh - 8rem); } .header-title { diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 5ec0e31..7ac73b1 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -52,7 +52,7 @@ </div> </div> - <div class="flex-shrink bg-gray-800 p-2 text-display text-center text-xs text-gray-400"> + <div class="flex-shrink bg-gray-800 p-1 text-display text-center text-xs text-gray-400"> Esoterra © 2020-2021 </div> </body> |