diff --git a/frontend/webapp/app/layout.tsx b/frontend/webapp/app/layout.tsx index 2f1622a38..74aba24b3 100644 --- a/frontend/webapp/app/layout.tsx +++ b/frontend/webapp/app/layout.tsx @@ -23,7 +23,7 @@ export default function RootLayout({ {children} diff --git a/frontend/webapp/components/setup/sources/sources.list/sources.list.styled.tsx b/frontend/webapp/components/setup/sources/sources.list/sources.list.styled.tsx index 6f7531e24..4e9eab0e3 100644 --- a/frontend/webapp/components/setup/sources/sources.list/sources.list.styled.tsx +++ b/frontend/webapp/components/setup/sources/sources.list/sources.list.styled.tsx @@ -25,6 +25,7 @@ export const SourcesListWrapper = styled.div` flex-wrap: wrap; gap: 24px; overflow-y: scroll; + scrollbar-width: none; `; export const EmptyListWrapper = styled.div` diff --git a/frontend/webapp/containers/setup/destination/destination.section.styled.tsx b/frontend/webapp/containers/setup/destination/destination.section.styled.tsx index 6f1f35ff2..385e65655 100644 --- a/frontend/webapp/containers/setup/destination/destination.section.styled.tsx +++ b/frontend/webapp/containers/setup/destination/destination.section.styled.tsx @@ -6,6 +6,7 @@ export const DestinationListContainer = styled.div` padding-bottom: 300px; margin-top: 24px; overflow: scroll; + scrollbar-width: none; `; export const EmptyListWrapper = styled.div` diff --git a/frontend/webapp/design.system/drop.down/drop.down.styled.tsx b/frontend/webapp/design.system/drop.down/drop.down.styled.tsx index f4b0b597b..74b3cb9d9 100644 --- a/frontend/webapp/design.system/drop.down/drop.down.styled.tsx +++ b/frontend/webapp/design.system/drop.down/drop.down.styled.tsx @@ -55,6 +55,7 @@ export const DropdownListWrapper = styled.div` width: 100%; max-height: 270px; overflow-y: scroll; + scrollbar-width: none; :hover { background: ${({ theme }) => theme.colors.dark_blue}; }