Make button grow on hover

PHOTO EMBED

Wed Jun 30 2021 08:18:15 GMT+0000 (Coordinated Universal Time)

Saved by @hisam #css

.LikeButton button {
  margin: 1rem;
  transition: all 0.5s ease;
  transform: scale(1);
}

.LikeButton button:hover {
  cursor: pointer;
  transform: scale(1.25);
  filter: brightness(120%);
}
content_copyCOPY