Skip to content

Commit

Permalink
fix overflow-x (#125)
Browse files Browse the repository at this point in the history
* fix overflow-x

* no scrollbar if not needed
  • Loading branch information
Flaque authored Apr 23, 2018
1 parent 1e6e375 commit 7328572
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/frame/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { connect } from "react-redux";
const LeftFixedWidthDiv = FixedWidthDiv.extend`
background: ${props => props.theme.colors.secondaryBackground};
height: 100%;
overflow: scroll;
overflow-y: auto;
z-index: 0;
`;

Expand Down
2 changes: 1 addition & 1 deletion src/lib/ui/SplitPanes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const opaqueBorder = (props, alpha) => {

const StyledSplitPaneContainer = styled.div`
.Pane2 {
overflow-y: scroll;
overflow-y: auto;
}
.Resizer {
Expand Down

0 comments on commit 7328572

Please sign in to comment.