You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! pls. allow the content of axa-modal to be scrollable, if content height exceeds the modal height.
(OR maybe better: expand the contents automatically to its full height)
Currently there is no scrollbar which confuses users when there's more content.
Thanks!
Here's a workaround I am using now in React to show vertical scrollbar.
/** * Within <axa-modal> makes content vertically scrollable */exportconstModalContentScrollable: React.FC<React.PropsWithChildren>=({ children })=>{return(<divstyle={{maxHeight: '100%',overflowY: 'auto',overflowX: 'hidden'}}>{children}</div>);
The text was updated successfully, but these errors were encountered:
Hi! pls. allow the content of axa-modal to be scrollable, if content height exceeds the modal height.
(OR maybe better: expand the contents automatically to its full height)
Currently there is no scrollbar which confuses users when there's more content.
Thanks!
Here's a workaround I am using now in React to show vertical scrollbar.
The text was updated successfully, but these errors were encountered: