Skip to content
Merged
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
11 changes: 11 additions & 0 deletions libs/chat/src/lib/styles/chat-welcome.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,17 @@ export const CHAT_WELCOME_STYLES = `
gap: 8px;
margin-top: 4px;
}
/* Consumers commonly project chips wrapped in a single <div
chatWelcomeSuggestions> element. In that case the slot's flex gap
applies between divs (one of them) — not between the chips inside.
Apply the same flex layout one level down so the chips actually
get spacing. Safe no-op when chips are projected directly. */
.chat-welcome__suggestions > div {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 8px;
}
.chat-welcome__suggestions:empty { display: none; }
`;

Expand Down
Loading