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 }
|
shouldCloseOnClickOutside={ false }
|
||||||
>
|
>
|
||||||
<iframe
|
<iframe
|
||||||
style={ { width: '500px', height: '500px', display: 'block' } }
|
style={ { width: '500px', height: '100%', display: 'block' } }
|
||||||
src={ `${ baseUrl }/integrations/cms` }
|
src={ `${ baseUrl }/integrations/cms` }
|
||||||
title="Choose a Form"
|
title="Choose a Form"
|
||||||
></iframe>
|
></iframe>
|
||||||
|
|
|
@ -52,9 +52,10 @@
|
||||||
|
|
||||||
// Remove modal padding
|
// Remove modal padding
|
||||||
.cognito-modal {
|
.cognito-modal {
|
||||||
|
height: 600px;
|
||||||
|
|
||||||
.components-modal__content {
|
.components-modal__content {
|
||||||
padding: initial;
|
padding: initial;
|
||||||
height: fit-content;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.components-modal__content::before {
|
.components-modal__content::before {
|
||||||
|
|
Loading…
Reference in New Issue