[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.

small fixes

Florian (Mar 6, 2026, 7:30 AM +0100) 87711f38 56a08d96

+4 -4
+2 -2
packages/core/src/lib/components/avatar/AvatarGroup.svelte
··· 30 30 </script> 31 31 32 32 <div class={cn('flex -space-x-2 overflow-hidden', className)} bind:this={ref} {...restProps}> 33 - {#each users as user} 33 + {#each users as user, index (index)} 34 34 <Avatar 35 35 src={user.src} 36 36 alt={user.alt} 37 37 fallback={user.fallback} 38 - class={cn('border-base-50 dark:border-base-950 border-2', avatarClass)} 38 + class={cn('border-base-50 dark:border-base-900 border-2', avatarClass)} 39 39 {imageClass} 40 40 {fallbackClass} 41 41 />
+2 -2
apps/docs/src/routes/(main)/components/[category]/[slug]/+page.svelte
··· 26 26 27 27 <Prose> 28 28 <div class="flex items-end gap-4"> 29 - <h1 class="!my-0">{componentDoc.title}</h1> 29 + <h1 class="my-0!">{componentDoc.title}</h1> 30 30 <Button size="sm" class="not-prose mb-1" variant="secondary" href="/components/{category}/{slug}/llms.txt" target="_blank"> 31 31 <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 12.15V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-3.35"/><path d="M14 2v5a1 1 0 0 0 1 1h5"/><path d="m5 16-3 3 3 3"/><path d="m9 22 3-3-3-3"/></svg> 32 - <span class="sr-only">open llms.txt</span> 32 + <span>llms.txt</span> 33 33 </Button> 34 34 </div> 35 35 {#if componentDoc.example}