Modal page

Modal Page Width

Does anybody have CSS code of adjusting modal page width in next gen apps?

This works fine in classic but is not working in next gen.

Any ideas greatly appreciated.

.kn-modal {
width: 90%;
max-width: 1200px;
}

1 Like

Hi @Steve19, try this:

.kn-dialog-content {
  width: 90%;
  max-width: 1200px;
}

Note that Next-Gen and Classic have different structures of classes now, so a lot of your CSS/JS will not work. See here for full documentation.

2 Likes