Bug in vertical timeline

Hi,

There is a bug when i have more than about 15/20 items in a same day in vertical timeline. The vertical line disappear for last events.

In picture, you will see the kitchen sink example where i have copy paste some more events. You will see the problem appear. I have not understood in the code source where could be the problem. I think about a maximum height static too low ?

THanks

If I put a height of 2000vh instead of 100vh it fixe the problem.

But don’t seem “clean” for me

.timeline-item-divider:after, .timeline-item-divider:before {
content: ’ ';
width: 1px;
height: 2000vh;
position: absolute;
left: 50%;
background: inherit;
transform: translate3d(-50%,0,0);
}

1 Like

Increasing height is fine there and correct solution

1 Like