Segregate script canvas context

This commit is contained in:
2026-01-13 13:53:23 +01:00
parent f215ef9aba
commit 5b0ef9c606
5 changed files with 109 additions and 46 deletions

View File

@@ -1120,10 +1120,22 @@ button:disabled:hover {
z-index: 1;
}
#broadcast-script-canvas {
.broadcast-script-layer {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 2;
}
.broadcast-script-layer canvas {
position: absolute;
top: 0;
left: 0;
}
.broadcast-body {
margin: 0;
overflow: hidden;