Skip to content

Commit

Permalink
removed-scrollbar
Browse files Browse the repository at this point in the history
  • Loading branch information
alonkeyval committed Jul 16, 2023
1 parent 1e0ad13 commit 1209cf7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/webapp/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function RootLayout({
<ThemeProvider theme={theme}>
<body
suppressHydrationWarning={true}
style={{ margin: 0, position: "fixed" }}
style={{ margin: 0, position: "fixed", scrollbarWidth: "none" }}
>
{children}
</body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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};
}
Expand Down

0 comments on commit 1209cf7

Please sign in to comment.