I am facing the problem of slow scrolling of the web app prototype on "mobile phones". Any suggestions to make it smoother and faster? I am making use of Layout to make the app responsive. I hope that is not causing any issue.
https://math-worksheets-three.vercel.app/
I am using Window component with these parameters
var win = new Window(
			{
				backgroundColor:black,
				scrollBarColor:black,
				 swipe: "vertical",     
                slide: false,                 
                slideFactor: 0.9,          
                slideSnap: true,            
                slideSnapDamp: 0.1,     
                scrollWheel: true,           
                scrollBarActive: true,       
                scrollBarDrag: true,         
                scrollBarColor: dark,       
                scrollBarAlpha: 1,        
                scrollBarFade: false,      
                scrollBarH: false,          
                scrollBarV: true,           
                 interactive: true,      
			});  
     		 win.scrollBar.size = 10;            
            win.scrollBar.minSize = 20;         
            win.scrollBar.corner = 5;         
            win.scrollBar.spacing = 5;         
            win.scrollBar.color = green;