|
@@ -1,4 +1,3 @@
|
|
|
-import { ScrollArea } from '@/components/ui/scroll-area'
|
|
|
|
|
import { Separator } from '@/components/ui/separator'
|
|
import { Separator } from '@/components/ui/separator'
|
|
|
|
|
|
|
|
interface ContentSectionProps {
|
|
interface ContentSectionProps {
|
|
@@ -19,9 +18,9 @@ export default function ContentSection({
|
|
|
<p className='text-muted-foreground text-sm'>{desc}</p>
|
|
<p className='text-muted-foreground text-sm'>{desc}</p>
|
|
|
</div>
|
|
</div>
|
|
|
<Separator className='my-4 flex-none' />
|
|
<Separator className='my-4 flex-none' />
|
|
|
- <ScrollArea className='faded-bottom h-full w-full scroll-smooth pr-4 pb-28'>
|
|
|
|
|
|
|
+ <div className='faded-bottom h-full w-full overflow-y-auto scroll-smooth pr-4 pb-12'>
|
|
|
<div className='-mx-1 px-1.5 lg:max-w-xl'>{children}</div>
|
|
<div className='-mx-1 px-1.5 lg:max-w-xl'>{children}</div>
|
|
|
- </ScrollArea>
|
|
|
|
|
|
|
+ </div>
|
|
|
</div>
|
|
</div>
|
|
|
)
|
|
)
|
|
|
}
|
|
}
|