From 78ecee13958afcc6f0a2d17cb753b0de1593beca Mon Sep 17 00:00:00 2001 From: Zorchenhimer Date: Thu, 28 Nov 2019 20:01:25 -0500 Subject: [PATCH] Fix chat not showing on join Opacity was set to zero percent and never changed. This removes the opacity CSS value. It looks like opacity was used at one point, but never fully removed. --- static/css/site.css | 1 - 1 file changed, 1 deletion(-) diff --git a/static/css/site.css b/static/css/site.css index 09545c6..7962f5c 100644 --- a/static/css/site.css +++ b/static/css/site.css @@ -281,7 +281,6 @@ input[type=text] { #messages { min-height: 15em; color: var(--var-message-color); - opacity: 0%; overflow-y: scroll; border: var(--var-border); }