Fix select dialog sizing

This commit is contained in:
Michael Thomas 2022-02-26 15:41:59 -05:00
parent 23a23f7f56
commit 20a2fa92a9
2 changed files with 3 additions and 2 deletions

View File

@ -37,7 +37,7 @@ class SelectDialog extends React.Component<IDialogProps> {
shouldCloseOnClickOutside={ false }
>
<iframe
style={ { width: '500px', height: '500px', display: 'block' } }
style={ { width: '500px', height: '100%', display: 'block' } }
src={ `${ baseUrl }/integrations/cms` }
title="Choose a Form"
></iframe>

View File

@ -52,9 +52,10 @@
// Remove modal padding
.cognito-modal {
height: 600px;
.components-modal__content {
padding: initial;
height: fit-content;
}
.components-modal__content::before {