Skip to content

Commit

Permalink
bigger heart
Browse files Browse the repository at this point in the history
  • Loading branch information
EthanBonsignori committed Mar 12, 2024
1 parent 658dc52 commit 5d0f46d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/pages/Blog.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const Blog = ({ darkMode, toggleTheme }) => {
className={
likeAnimationActive ? 'animate-like' : 'not-animating'
}>
<FontAwesomeIcon icon={faHeart} />
<FontAwesomeIcon icon={faHeart} size='2x' />
</LikeButton>
<BlogLikes
className={textAnimationActive ? 'animate-likes-number' : ''}>
Expand Down Expand Up @@ -155,23 +155,23 @@ const likeAnimation = keyframes`
color: #FF1F1F;
}
70% {
transform: scale(3) rotate(-5deg);
transform: scale(2.9) rotate(-5deg);
color: #FF4747;
}
80% {
transform: scale(2.7) rotate(-3.2deg);
color: #FF7070;
}
90% {
transform: scale(2) rotate(-2.5deg);
transform: scale(2.25) rotate(-2.5deg);
color: #FF9999;
}
95% {
transform: scale(1.8) rotate(-1.5deg);
transform: scale(1.9) rotate(-1.5deg);
color: #FFD6D6;
}
100% {
transform: scale(1) rotate(0deg);
transform: scale(1) rotate(-1.5deg);
color: inherit;
}
`;
Expand Down

0 comments on commit 5d0f46d

Please sign in to comment.