Skip to content

Commit

Permalink
chore: add subgrid to carousel
Browse files Browse the repository at this point in the history
  • Loading branch information
dan2k3k4 committed Jan 23, 2025
1 parent 2079032 commit ee98738
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/ui/src/components/Organisms/Carousel/Carousel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ export function Carousel({
)}
>
{React.Children.map(children, (child, index) => (
<li key={index} className="embla__slide min-w-0 p-2">
<li
key={index}
className="embla__slide grid min-w-0 grid-cols-subgrid p-2"
>
{child}
</li>
))}
Expand Down

0 comments on commit ee98738

Please sign in to comment.