Hi,
Yes, you can increase the AEM dialog size — but the right way is not to change the default AEM CSS. Instead, give your dialog a custom class and use a small clientlib to style only that dialog.
Here’s how:
-
In your component dialog (
/apps/.../cq:dialog), add:granite:class = my-dialog -
Create a clientlib under
/apps/your-site/clientlibs/dialogwith categorycq.authoring.dialog.
Add a CSS file (e.g.dialog.css) containing:.my-dialog .coral-Dialog { width: 90vw; max-width: 1100px; } .my-dialog .coral-Dialog-content { max-height: calc(100vh - 150px); overflow: auto; } -
Build and deploy , the dialog will now open wider and be scrollable even with nested multifields.
This approach affects only your component dialog.
Hope this helps.
Regards,
Manvi Sharma