From ca5b2685bb340875ebf68092f6cb8e82cf9e674c Mon Sep 17 00:00:00 2001 From: Aria Minaei Date: Fri, 4 Feb 2022 20:21:23 +0100 Subject: [PATCH] Fix the scrollbar bug with non-webkit browsers https://discord.com/channels/870988717190426644/870988717190426647/938364256271884320 https://discord.com/channels/870988717190426644/870988717190426647/938842750827262044 --- .../src/panels/SequenceEditorPanel/VerticalScrollContainer.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/theatre/studio/src/panels/SequenceEditorPanel/VerticalScrollContainer.tsx b/theatre/studio/src/panels/SequenceEditorPanel/VerticalScrollContainer.tsx index e74e1dc..d02e638 100644 --- a/theatre/studio/src/panels/SequenceEditorPanel/VerticalScrollContainer.tsx +++ b/theatre/studio/src/panels/SequenceEditorPanel/VerticalScrollContainer.tsx @@ -16,6 +16,8 @@ const Container = styled.div` &::-webkit-scrollbar { display: none; } + + scrollbar-width: none; ` type ReceiveVerticalWheelEventFn = (ev: WheelEvent) => void