Blur background on modal pop-up

blur background pop-up

This code allows you to blur the background when someone triggers a modal, it helps put focus on the modal and not the background. The blur strength can be adjusted as needed.

Add this to the main style sheet.

.oxy-modal-backdrop.live {
backdrop-filter: blur(5px);
}
Click to Copy