I am attempting to achieve a blur effect on a dialog pop-up.
Currently, I am using the primeng p-dialog component for this purpose.
<p-panelMenu [model]="items" [style]="{'width':'300px'}"></p-panelMenu>
<p-dialog header="HELLO" [(visible)]="display" modal="modal" [responsive]="true" [width]="350" [minWidth]="200" (onHide)="close($event)" >
<span>hi</span>
</p-dialog>
To apply the blur effect in CSS, I have used the following code:
::ng-deep .ui-widget-overlay {
filter: blur(20px);
}
However, the issue I am facing is that the blur effect is not working as expected.
Instead of a true blur effect, what I am seeing is more of a "glow" effect. You can view a demo showcasing this here. For reference, a real blur effect example can be found here.