Fixed overflow scroll visible on search inputs and developer page in firefox

This commit is contained in:
Piotr Janosz
2019-08-01 19:17:04 +02:00
committed by fabioberger
parent 477791a600
commit b51933c4d9
2 changed files with 2 additions and 2 deletions

View File

@@ -147,7 +147,7 @@ export const AutocompleteWrapper = styled.div<IWrapperProps>`
flex-grow: 1;
max-height: calc(100vh - 200px);
overflow-y: scroll;
overflow-y: auto;
/* Slim scroll bar */
scrollbar-width: 1px; /* Firefox */

View File

@@ -39,7 +39,7 @@ const scrollableContainerStyles = `
bottom: 0px;
right: 0px;
overflow-x: hidden;
overflow-y: scroll;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
`;