From 56328265c89dfb98c136e68400dff80424147e5a Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Sat, 31 Jan 2026 13:15:17 +1000 Subject: [PATCH] enforce gl-canvas-bg takes the entire viewwidth --- www/css/shader-style.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/www/css/shader-style.css b/www/css/shader-style.css index 2e87d83..9b39002 100644 --- a/www/css/shader-style.css +++ b/www/css/shader-style.css @@ -1,8 +1,11 @@ .gl-canvas-bg { + display:block; + width: 100vw; + height: 100vh; + position: fixed; left: 0; top: 0; - width: 100%; - height: 100%; + z-index: -1; }