From 43a3bc0c439146aa88b691dd7be831adc7029e80 Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Fri, 2 Jul 2021 18:23:51 +0200 Subject: prevent sprites from clipping through the bottom of the viewport --- webAO/styles/client.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/webAO/styles/client.css b/webAO/styles/client.css index 019d9b4..b00718e 100644 --- a/webAO/styles/client.css +++ b/webAO/styles/client.css @@ -121,9 +121,12 @@ overflow-x: hidden; overflow-y: auto; height: 100%; + background: inherit; } #client_iccontrols { + position: relative; + background: inherit; overflow-y:auto; } @@ -353,6 +356,7 @@ #client_bars { position: relative; + background: inherit; text-align: center; display: flex; display: -webkit-flex; -- cgit