Skip to content

Commit

Permalink
[sparkle] - fix: adjust responsive grid columns for ConversationMessa…
Browse files Browse the repository at this point in the history
…geContent

 - Change the grid column setup at 'xs' breakpoint to start with 2 columns instead of 1
  • Loading branch information
JulesBelveze committed Dec 16, 2024
1 parent e125622 commit 4586552
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sparkle/src/components/ConversationMessageContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export function ConversationMessageContent({
"s-grid s-grid-cols-2 s-gap-2",
size === "compact"
? ""
: "@xs:s-grid-cols-1 @sm:s-grid-cols-3 @lg:s-grid-cols-4 @xl:s-grid-cols-5"
: "@xs:s-grid-cols-2 @sm:s-grid-cols-3 @lg:s-grid-cols-4 @xl:s-grid-cols-5"
)}
>
{citations}
Expand Down

0 comments on commit 4586552

Please sign in to comment.