Fixed lcd-visualiser CSS

This commit is contained in:
Kaler 2026-03-10 13:28:16 +05:30
parent 04f04ca03a
commit 97e41b521b
2 changed files with 3 additions and 2 deletions

View file

@ -269,7 +269,8 @@ export class LCDPreset {
this.initWebGL(width, height);
// Attach WebGL canvas to same parent as main canvas
if (this.glCanvas && canvas.parentElement) {
canvas.parentElement.style.position = 'relative';
//This position:relative was causing the visual bugs and problems in the lcd visualiser.
// canvas.parentElement.style.position = 'relative';
canvas.parentElement.appendChild(this.glCanvas);
}
}

View file

@ -7508,7 +7508,7 @@ body:has(#side-panel.active) #close-fullscreen-cover-btn {
/* EQ Response Curve Canvas */
.eq-response-canvas {
position: absolute;
position: fixed;
top: var(--spacing-md);
left: 4px;
width: calc(100% - 8px);