From 2f8f24cb45aec4810855961e1a3f291a689d4d07 Mon Sep 17 00:00:00 2001 From: mgreminger Date: Fri, 10 Nov 2023 15:13:33 -0600 Subject: [PATCH] fix: force margin behind sheet content for when cells overflow Also, fixes margin click to unselect all for scrolled page --- src/App.svelte | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/App.svelte b/src/App.svelte index 8139f7fc..f37ed3ff 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -1957,10 +1957,14 @@ Please include a link to this sheet in the email to assist in debugging the prob #sheet { width: min(1000px, 100%); height: fit-content; + z-index: 2; } div.sheet-margin { flex-grow: 1; + position: sticky; + top: 0px; + z-index: 1; } #keyboard-tray {