Skip to content

Commit

Permalink
Fix footer positioning in ios (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
jscheel authored Nov 23, 2020
1 parent 95ad405 commit 7c2bcce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Container.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const StyledContent = styled(motion.div)`
const InnerContent = styled.div`
display: flex;
flex-direction: column;
flex: 1 1 auto;
flex: 1 0 auto;
${props =>
props.padded ? `padding-bottom: ${spacing.padding.small}px;` : ''}
${props => (props.maxHeight ? `max-height: ${props.maxHeight};` : '')}
Expand Down

0 comments on commit 7c2bcce

Please sign in to comment.