Scroll Area
Ready
Part of Layout collection
Vertical Scroll
Scrollable content with custom styled scrollbars
Horizontal Scroll
Scroll horizontally through content
Features
- Custom styled scrollbars
- Vertical and horizontal orientation
- Configurable max height/width
- Hover effects on scrollbar
Usage
import { ScrollArea } from '@/components/ui/scroll-area'
// Vertical scroll
<ScrollArea maxHeight="400px">
<div>Long content...</div>
</ScrollArea>
// Horizontal scroll
<ScrollArea orientation="horizontal">
<div className="flex">Items...</div>
</ScrollArea>