DialogBox background still visible

Hi,

I am trying to open a dialog box but when dialog box is open the last screen which was open is till visible in background. how to blurr background or closed the background screen when dialog box is open.

popup

Hi,

In case of Helium, I’d recommend adding the following styles to the theme extension:

.v-window-modalitycurtain {
  @include opacity(1);
  background: he-rgba($color: --secondary-color_rgb, $alpha: .5);
  backdrop-filter: blur(10px);
}

Result:
Screenshot 2022-11-09 at 15.12.53

Regards,
Gleb