The content in ScrollArea scrolls well when height is specified in className, but not when max-height is used.
here's the example
working
<ScrollArea className="min-w-full h-screen border-slate-200 border rounded-lg">
//content...(the height is larger than screen)
</ScrollArea>
not working
<ScrollArea className="min-w-full max-h-screen border-slate-200 border rounded-lg">
//content...(the height is larger than screen)
</ScrollArea>
The content in
ScrollAreascrolls well whenheightis specified inclassName, but not whenmax-heightis used.here's the example
working
not working