Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion packages/presentation/ui/src/chat/shimmer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ export function Shimmer({
style={
{
backgroundImage:
'linear-gradient(90deg, transparent 35%, var(--color-background), transparent 65%), linear-gradient(var(--color-muted-foreground), var(--color-muted-foreground))',
// coss-ui's semantic --color-* aliases are @theme inline and Tailwind never scans a JS
// style string, so they are not emitted to :root — read the underlying vars directly.
'linear-gradient(90deg, transparent 35%, var(--background), transparent 65%), linear-gradient(var(--muted-foreground), var(--muted-foreground))',
backgroundRepeat: 'no-repeat',
} satisfies React.CSSProperties
}
Expand Down