Is there any way to make div with scroll overview in X and visible over flow in Y without making nested scroll?
<div className={“w-full py-6 text-white px-10 h-fit max-h-full ” + className}> <h2 className=”text-3xl font-bold”>{title}</h2> {/* This div contains movies cards. I want to make here scrolling horizontally */} {/* Keep in mind that while hovering on movie card movie card scale increase so it make nested vertical scroll that I want to fix */} <div ref={categoryRef} […]