Skip to content

Commit

Permalink
making photo thumbnail smaller
Browse files Browse the repository at this point in the history
  • Loading branch information
natapokie committed Sep 9, 2024
1 parent 3be3cc2 commit b47e8dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/components/photo/photo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export const Photo = ({ img }: { img: string }) => {

return (
<div className="fixed top-4 right-4 border border-gray-300 shadow-md">
<img id="image" alt="Received image" src={img} width={400} height={400}/>
<img id="image" alt="Received image" src={img} width={100} />
</div>
);
};

0 comments on commit b47e8dd

Please sign in to comment.