From a399cf38e74b37d9d25c74dc0f3890fefbb18390 Mon Sep 17 00:00:00 2001 From: Louis Jencka Date: Sun, 29 Mar 2020 17:50:43 -0600 Subject: [PATCH] Tweak elements for mobile experience This commit forces a device-width sized viewport, which makes for a much more usable chat experience on mobile devices. A chat element min-size is also removed to avoid screen overflow on mobile devices. --- static/base.html | 1 + static/css/site.css | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/static/base.html b/static/base.html index 262ff5a..8bc8225 100644 --- a/static/base.html +++ b/static/base.html @@ -3,6 +3,7 @@ + {{ .Title }} diff --git a/static/css/site.css b/static/css/site.css index 67517b4..7cc40e3 100644 --- a/static/css/site.css +++ b/static/css/site.css @@ -302,7 +302,6 @@ input[type=text] { } #messages { - min-height: 15em; color: var(--var-message-color); overflow-y: scroll; border: var(--var-border);