Fix select dialog sizing
This commit is contained in:
parent
23a23f7f56
commit
20a2fa92a9
|
@ -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>
|
||||
|
|
|
@ -52,9 +52,10 @@
|
|||
|
||||
// Remove modal padding
|
||||
.cognito-modal {
|
||||
height: 600px;
|
||||
|
||||
.components-modal__content {
|
||||
padding: initial;
|
||||
height: fit-content;
|
||||
}
|
||||
|
||||
.components-modal__content::before {
|
||||
|
|
Loading…
Reference in New Issue