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

Commit

Permalink
fix: Fix droppable column height sizing (#338)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sabrinovsky authored and lourenci committed May 3, 2020
1 parent 7151c6d commit 62ec2b4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/Board/components/Column/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import CardAdder from './components/CardAdder'

export const StyledColumn = styled.div`
height: 100%;
min-height: 28px;
display: inline-block;
padding: 15px;
border-radius: 2px;
Expand All @@ -17,7 +18,8 @@ export const StyledColumn = styled.div`
`

const DroppableColumn = withDroppable(styled.div`
min-height: 28px;
height: inherit;
min-height: inherit;
`)

function Column({
Expand Down

0 comments on commit 62ec2b4

Please sign in to comment.