Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
huv1k committed Nov 23, 2018
2 parents 780a779 + 44ec453 commit a86aec1
Showing 1 changed file with 2 additions and 1 deletion.
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 a86aec1

Please sign in to comment.