Skip to content

Commit

Permalink
move title to image
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielBrito committed Aug 22, 2024
1 parent 1bcb568 commit dd87216
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/PublicationItem/PublicationItem.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ function PublicationItem({ publication }) {
return (
<div className="publication-item-wrapper">
<div className="thumb-wrapper">
<Link to={publication.path} title={`Ler ${publication.name.toUpperCase()}`}>
<Link to={publication.path}>
<img
src={publication.thumb}
className="publication-thumb"
width={"339px"}
height={"480px"}
title={`Ler ${publication.name.toUpperCase()}`}
/>
</Link>
</div>
Expand Down

0 comments on commit dd87216

Please sign in to comment.