How to change the opacity of a Popover and keep the standard Animation?

Hey,

I am trying to change backdrop opacity of a popover without destroying the animation that comes with the popover. I have seen that it should be possible at; https://github.com/ionic-team/ionic/issues/16446 but i have not yet succeded.

Is there anyone with an example on how to do it, with the animation working? :slight_smile:

I am currently doing this:

.onboarding_popover {
    .popover-content {
        background: white; 
    }
    ion-backdrop{
      opacity: 0.4 !important;
    }
  }

Which is stopping the animation for the backdrop, but not the pop-overโ€ฆ