enforce gl-canvas-bg takes the entire viewwidth

This commit is contained in:
Emile Clark-Boman 2026-01-31 13:15:17 +10:00
parent 0e881ee340
commit 56328265c8

View file

@ -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;
}