Skip to content

Commit

Permalink
fix(react): scrolling to bottom of modal contents (#24510)
Browse files Browse the repository at this point in the history
Resolves #24478
  • Loading branch information
sean-perkins authored Jan 5, 2022
1 parent b39003a commit 1462cef
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,11 @@ export const createInlineOverlayComponent = <PropType, ElementType>(
React.createElement('div', {
id: 'ion-react-wrapper',
ref: this.wrapperRef,
style: { height: '100%' }
style: {
display: 'flex',
flexDirection: 'column',
height: '100%'
}
}, children) :
null
);
Expand Down

0 comments on commit 1462cef

Please sign in to comment.