Using Locomotive scroll causes some flickering when scrolling upwards. The elements in the upper sections appear in the viewport with a small but noticeable lag (maybe 0.1 sec). I saw a lot of demos, but almost all of these websites have the same issue. For example, the official demo: look at the section "04. Fixed elements" - the image is flickering when scrolling up to it.
Is it unavoidable when using Locomotion smooth scrolling?
P.S. Chrome 97.0 on Windows
UPDATE 1 That problem appears only on Chrome based browsers since 94 version due to implementation of their virtual-scroller.
Have found a temporal solution:
.has-scroll-smooth
{position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;}
But this breaks the layout if you use fixed position for some elements on the page.