Skip to content

Commit

Permalink
fix: emoji gallery not display full image
Browse files Browse the repository at this point in the history
  • Loading branch information
vdhieu committed Dec 12, 2023
1 parent 399d8e3 commit b010b98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/LandingPage/Gallery.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ const stickers = [
export default function Gallery() {
return (
<div id="gallery" className="relative bg-white px-5 py-12">
<div className="relative z-0 max-w-7xl mx-auto grid grid-cols-5 lg:grid-cols-8 gap-10">
<div className="relative z-0 max-w-7xl mx-auto grid grid-cols-5 lg:grid-cols-8 gap-5 lg:gap-10">
{stickers.map((imgSrc, idx) => (
<div key={idx} className="inline-flex items-center justify-center">
<img
className="w-14 h-14 lg:w-24 lg:h-24 object-cover"
className="w-14 h-14 lg:w-24 lg:h-24 object-contain"
src={`images/neko-sticker/${imgSrc}`}
alt=""
/>
Expand Down

0 comments on commit b010b98

Please sign in to comment.