CRUD version 24.9, in "overlay" mode

I need to change the size of Vaadin’s overlay mode, but it’s not allowed. It’s dynamically reconfiguring the overlay via Shadow DOM and inline styles, after rendering, and even after the attach event.

Hello,
make a test in your .css file with the code:

/* code */
vaadin-crud-dialog-overlay::part(overlay) {
width: 100% !important;
height: 800px !important;

max-width: 90vw !important;
max-height: 90vh !important;
}
/* end code */
this can help you.

Thank you very much, it worked.