Skip to content

Commit

Permalink
Change menu youtube icon, set minmax to grid
Browse files Browse the repository at this point in the history
  • Loading branch information
P-man2976 committed Oct 15, 2023
1 parent f39f16c commit ed0f384
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/react/src/components/video/VideoMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export function VideoMenu({
to={`https://youtu.be/${videoId}`}
target="_blank"
>
<div className="i-lucide:youtube" />
<div className="i-mdi:youtube" />
Open on YouTube
</Link>
</DropdownMenuItem>
Expand Down
4 changes: 2 additions & 2 deletions packages/react/src/routes/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ export function Home() {
const listCN = useMemo(
() =>
cn({
"grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 xl:grid-cols-6 gap-x-4 gap-y-6":
"grid grid-cols-1 grid-cols-[repeat(auto-fill,_minmax(300px,_1fr))] gap-x-4 gap-y-6":
cardSize === "lg",
"grid grid-cols-2 sm:grid-cols-4 lg:grid-cols-6 xl:grid-cols-8 gap-x-2 gap-y-4":
"grid grid-cols-2 grid-cols-[repeat(auto-fill,_minmax(200px,_1fr))] gap-x-2 gap-y-4":
cardSize === "md",
"flex flex-col max-w-screen-lg mx-auto": cardSize === "sm",
}),
Expand Down

0 comments on commit ed0f384

Please sign in to comment.