From 982a0799b8a9005d62f0eeaa386c862d461542ed Mon Sep 17 00:00:00 2001 From: Abhishek Thory <76877003+abhithory@users.noreply.github.com> Date: Tue, 10 Oct 2023 02:12:06 +0530 Subject: [PATCH] scrollbar corner background color set transparent (#1948) --- front/src/modules/ui/layout/components/DefaultLayout.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/front/src/modules/ui/layout/components/DefaultLayout.tsx b/front/src/modules/ui/layout/components/DefaultLayout.tsx index 37e304b11..178639e5f 100644 --- a/front/src/modules/ui/layout/components/DefaultLayout.tsx +++ b/front/src/modules/ui/layout/components/DefaultLayout.tsx @@ -29,6 +29,10 @@ const StyledLayout = styled.div` width: 4px; } + *::-webkit-scrollbar-corner { + background-color: transparent; + } + *::-webkit-scrollbar-thumb { background-color: transparent; border-radius: ${({ theme }) => theme.border.radius.sm};