Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
fix: remove unnecessary scrollbars on windows (#502)
Browse files Browse the repository at this point in the history
  • Loading branch information
tilmx authored and Markus Ölhafen committed Jun 12, 2018
1 parent 8d8bdbe commit 827708f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/panes/element-pane/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import styled from 'styled-components';
const StyledElementPane = styled.div`
position: relative;
flex: 1;
overflow: scroll;
overflow: auto;
padding-top: ${getSpace(SpaceSize.M)}px;
padding-bottom: ${getSpace(SpaceSize.XL)}px;
`;
Expand Down
2 changes: 1 addition & 1 deletion src/components/panes/property-pane/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const StyledPropertyPane = styled.div`
flex-shrink: 0;
flex-basis: 40%;
padding: ${getSpace(SpaceSize.M)}px;
overflow: scroll;
overflow: auto;
`;

export const PropertyPane: React.StatelessComponent = props => (
Expand Down

0 comments on commit 827708f

Please sign in to comment.