Pipeline 7.5.0 remove blur of page when cart draw deployed?

In the Pipeline theme, when the cart drawer deploys the entire page behind the drawer blurs out. How do remove this blur effect?

Try this into Theme Settings=> Custom CSS:

.drawer__underlay__blur {
  display: none !important;
}

The blur is gone, but there appears to be a white overlay?

michaelaram.com

Yeah, they apply 2 filters, blur and semi-transparent color.
You did not mention the color, only blur :slight_smile:

Try this instead:

.drawer__underlay {
  opacity: 0;
}

I could not see the semi-transparent color, I thought it was all blur :zany_face:

Worked, You da MAN!