From f8df8b55d805a7261553401c2208b342e7660182 Mon Sep 17 00:00:00 2001 From: gitstart-twenty <140154534+gitstart-twenty@users.noreply.github.com> Date: Tue, 29 Aug 2023 14:37:26 +0300 Subject: [PATCH] fix: Vertical scroll bar graphic artifacts in dark mode (#1369) Fix scroll Co-authored-by: Toledodev --- .../modules/ui/utilities/scroll/components/ScrollWrapper.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/modules/ui/utilities/scroll/components/ScrollWrapper.tsx b/front/src/modules/ui/utilities/scroll/components/ScrollWrapper.tsx index a8082a37b..ccd015060 100644 --- a/front/src/modules/ui/utilities/scroll/components/ScrollWrapper.tsx +++ b/front/src/modules/ui/utilities/scroll/components/ScrollWrapper.tsx @@ -6,7 +6,7 @@ import { useListenScroll } from '../hooks/useListenScroll'; const StyledScrollWrapper = styled.div` display: flex; height: 100%; - overflow: scroll; + overflow: auto; scrollbar-gutter: stable; width: 100%;