Dialog padding

Hi, how can I remove the padding of the dialog? I don’t know how to do it. I searched it, but with no success.
Thank you in advance!

I solved this problem by setting zero-padding to part “content” of vaadin-dialog-overlay:

  • Import CSS file
@CssImport(value = "./styles/shared-styles.css", themeFor = "vaadin-dialog-overlay") 
  • In CSS file:
[part="content"]
 {
    padding:0;
}