Fixed the hover effect to ensure that the icons do not move but smoothly animate by scaling up slightly.
Ensured that the border doesn't cause any shifting during hover by making the border transparent rather than removing it entirely.
Added a more subtle scale animation for a smoother and more refined hover experience.
Changes:
Added box-sizing: border-box; to maintain the layout.
Set a slight scale transform (scale(1.01)) for the hover effect to provide a more consistent animation.
Adjusted border behavior during hover to prevent size changes.
Solution:
Fixed the hover effect to ensure that the icons do not move but smoothly animate by scaling up slightly. Ensured that the border doesn't cause any shifting during hover by making the border transparent rather than removing it entirely. Added a more subtle scale animation for a smoother and more refined hover experience.
Changes:
Added box-sizing: border-box; to maintain the layout. Set a slight scale transform (scale(1.01)) for the hover effect to provide a more consistent animation. Adjusted border behavior during hover to prevent size changes.
before
after