One of the elements on my page is a list that scrolls vertically, named scroll-list-one
, and it functions perfectly.
Another element, which contains a vertical scrolling list called scroll-list-two
, occasionally appears as a popover over scroll-div-one
. The scrolling in this element works fine too.
The problem arises when I scroll scroll-list-two
using a swipe touch gesture on mobile. This action causes both scroll-list-two
and the one below it (scroll-list-one
) to scroll simultaneously.
Is there a way for me to prevent the touch gesture from affecting the element underneath? I want the gesture to only scroll the top element.