From 7f50d92d346cf69b3aee7c9e3e1f9bd2beb96a48 Mon Sep 17 00:00:00 2001 From: Guilhem Date: Tue, 29 Oct 2024 08:46:16 +0100 Subject: [PATCH] hide scrollbar when not hovering --- .../components/flows/propPicker/PropPickerWrapper.svelte | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/frontend/src/lib/components/flows/propPicker/PropPickerWrapper.svelte b/frontend/src/lib/components/flows/propPicker/PropPickerWrapper.svelte index e45490ce5d..3d4ea60bf1 100644 --- a/frontend/src/lib/components/flows/propPicker/PropPickerWrapper.svelte +++ b/frontend/src/lib/components/flows/propPicker/PropPickerWrapper.svelte @@ -110,4 +110,13 @@ width: 0 !important; border: none !important; } + + :global(.splitpanes__pane) { + overflow-y: auto; + scrollbar-width: none; + } + + :global(.splitpanes__pane:hover) { + scrollbar-width: thin; + }