fix: increase z-index for LayerForge fullscreen mode

Fixed LayerForge fullscreen mode displaying behind ComfyUI interface elements by increasing z-index from 111 to 999999. Fullscreen mode now properly overlays all UI components as intended.
This commit is contained in:
Dariusz L
2025-08-09 15:06:16 +02:00
parent d0e6bf8b3d
commit 00a39d756d
2 changed files with 2 additions and 2 deletions

View File

@@ -638,7 +638,7 @@
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.8);
z-index: 111;
z-index: 999999;
display: flex;
align-items: center;
justify-content: center;

View File

@@ -638,7 +638,7 @@
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.8);
z-index: 111;
z-index: 999999;
display: flex;
align-items: center;
justify-content: center;