Fixed lcd-visualiser CSS
This commit is contained in:
parent
04f04ca03a
commit
97e41b521b
2 changed files with 3 additions and 2 deletions
|
|
@ -269,7 +269,8 @@ export class LCDPreset {
|
||||||
this.initWebGL(width, height);
|
this.initWebGL(width, height);
|
||||||
// Attach WebGL canvas to same parent as main canvas
|
// Attach WebGL canvas to same parent as main canvas
|
||||||
if (this.glCanvas && canvas.parentElement) {
|
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);
|
canvas.parentElement.appendChild(this.glCanvas);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -7508,7 +7508,7 @@ body:has(#side-panel.active) #close-fullscreen-cover-btn {
|
||||||
|
|
||||||
/* EQ Response Curve Canvas */
|
/* EQ Response Curve Canvas */
|
||||||
.eq-response-canvas {
|
.eq-response-canvas {
|
||||||
position: absolute;
|
position: fixed;
|
||||||
top: var(--spacing-md);
|
top: var(--spacing-md);
|
||||||
left: 4px;
|
left: 4px;
|
||||||
width: calc(100% - 8px);
|
width: calc(100% - 8px);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue