Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add object-fit class to thumbnail images #11

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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: 2 additions & 2 deletions components/utils/Item.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ const Item = ({
src={meta.og && image()}
alt=""
width="270"
className="rounded-md w-full h-[150px] scale-on-hover duration-500"
className="rounded-md w-full h-[150px] object-cover scale-on-hover duration-500"
/>
</a>
</Link>
Expand Down Expand Up @@ -345,7 +345,7 @@ const Item = ({
src={meta.og && image()}
alt=""
width="300"
className="rounded-md w-full mb-2 h-[157.5px] scale-on-hover duration-500"
className="rounded-md w-full mb-2 h-[157.5px] object-cover scale-on-hover duration-500"
/>
</a>
</Link>
Expand Down