Skip to content

Commit

Permalink
fix overflow docs in electron app (#886)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidrf authored and huv1k committed Nov 23, 2018
1 parent 8355e0a commit 44ec453
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@ const Column = styled<ColumnProps, 'div'>('div')`
flex-flow: column;
padding-bottom: 20px;
border-right: 1px solid ${p => p.theme.colours.black10};
overflow: ${p => (p.overflow ? 'hidden scroll' : 'auto auto')};
overflow-x: ${p => (p.overflow ? 'hidden' : 'auto')}
overflow-y: ${p => (p.overflow ? 'scroll' : 'auto')}
`

0 comments on commit 44ec453

Please sign in to comment.