[READ-ONLY] Mirror of https://github.com/flo-bit/ui-kit. 🦊 fox ui, svelte 5 and tailwind 4 flo-bit.dev/ui-kit/
svelte tailwindcss ui-components
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: add ref binding on scrollable div

authored by

Meri Leeworthy and committed by
GitHub
(Oct 29, 2025, 1:21 PM +1100) 3dc64d0a 26feda63

+1 -1
+1 -1
packages/core/src/lib/components/scroll-area/ScrollArea.svelte
··· 22 22 } 23 23 </script> 24 24 25 - <div class={cn('scrollbar', getOrientationClasses(), className)} {...restProps}> 25 + <div bind:this={ref} class={cn('scrollbar', getOrientationClasses(), className)} {...restProps}> 26 26 {@render children?.()} 27 27 </div> 28 28