fix(react): scrolling to bottom of modal contents (#24510)

Resolves #24478
This commit is contained in:
Sean Perkins
2022-01-05 13:32:46 -05:00
committed by GitHub
parent b39003a4c6
commit 1462cef692

View File

@ -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
);