From 28afdc35ef2363fd0f662ac91ce2ca14a55cd9b4 Mon Sep 17 00:00:00 2001 From: Alessandro Pignotti Date: Tue, 15 Oct 2024 22:26:03 +0200 Subject: [PATCH] Make sure the display canvas does not go over the side panel --- src/lib/WebVM.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/WebVM.svelte b/src/lib/WebVM.svelte index 3e4a72c..800c744 100644 --- a/src/lib/WebVM.svelte +++ b/src/lib/WebVM.svelte @@ -162,7 +162,7 @@ return; // Raise the display to the foreground const display = document.getElementById("display"); - display.style.zIndex = 10; + display.style.zIndex = 5; plausible("Display activated"); } function handleProcessCreated()