Transition layout creates white background flash

Hi, getting into transitions and facing a really weird thing :
Basically i have two layouts (one for homepage) and when transitioning from custom to default layout I'd like active one to fade and revealing next page bellow it.

I'm almost there but when vanishing the actual page doesn't reveal next one but a white blank page until the other appear.

How to get ride of this white background ?


Current css :
.layout-leave-active {
  transition: opacity 0.25s;
}

.layout-leave-to {
  opacity: 0;
}
Was this page helpful?