Skip to content

Commit

Permalink
Merge pull request nextstrain#1439 from artt/patch-1
Browse files Browse the repository at this point in the history
Remove scrollbar in PanelsContainer when no scrolling is possible
  • Loading branch information
jameshadfield committed Jan 5, 2022
2 parents d8b3d2a + 2b60ccc commit efe6fff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/main/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const PanelsContainer = styled.div`
height: ${(props) => props.height+"px"};
width: ${(props) => props.width+"px"};
overflow-x: hidden;
overflow-y: scroll;
overflow-y: auto;
left: ${(props) => props.left+"px"};
`;

Expand Down

0 comments on commit efe6fff

Please sign in to comment.