ALL HAIL THE SHADER BACKGROUND

This commit is contained in:
2025-12-08 12:28:43 +01:00
parent a6a7e836cc
commit eca63b368d
3 changed files with 18 additions and 3 deletions
+13 -1
View File
@@ -200,6 +200,18 @@ export const ShaderBackground = () => {
});
return (
<canvas ref={canvasRef} id="blackhole_canvas" width="800" height="450" />
<canvas
ref={canvasRef}
id="blackhole_canvas"
style={{
width: "100vw",
height: "100vh",
position: "fixed",
top: 0,
left: 0,
zIndex: -1,
pointerEvents: "none",
}}
/>
);
};