I have encountered a challenge while working with angularjs material design. The md-scroll
functionality is not working as expected for scrolling up and down, even though it works fine for left and right scrolling. In a tab with a table view, the vertical scroll is not responding properly and instead of moving up and down, it scrolls in the left direction.
For implementing scroll left and right, I have used the following CSS:
md-tabs-content-wrapper, [md-swipe-left], [md-swipe-right] {
touch-action: none;
touch-action: pan-y;
}