fix(live2d): canvas z-50 so cat renders above frosted glass sidebar

This commit is contained in:
2026-06-05 15:23:40 -04:00
parent ff6bf46724
commit 8a50fef24b
+1 -1
View File
@@ -139,7 +139,7 @@ export default function Live2DStage({ onKiraReady, onReady }: Props) {
<canvas <canvas
ref={canvasRef} ref={canvasRef}
className="fixed inset-0 w-full h-full" className="fixed inset-0 w-full h-full"
style={{ zIndex: 0, pointerEvents: 'none' }} style={{ zIndex: 50, pointerEvents: 'none' }}
/> />
); );
} }