You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The movement of footer link cards (.footer__links-column) appears slightly inconsistent instead of smooth.
Investigation
While inspecting the footer styles, I noticed that the first footer card (.footer__about) already defines a transition for transform and box-shadow.
However, the link cards (.footer__links-column) define transitions only for background-color and box-shadow, but not transform.
Because of this, the hover transform occurs instantly, resulting in a jerky hover effect.
Issue.mp4
Note: For clearer demonstration in the attached video, the scale value was temporarily increased. The suggested fix will only add the missing transition and does not modify the existing transform behavior.
Suggested Fix
Add transform to the transition property for .footer__links-column.
Problem
The movement of footer link cards (
.footer__links-column) appears slightly inconsistent instead of smooth.Investigation
While inspecting the footer styles, I noticed that the first footer card (
.footer__about) already defines a transition fortransformandbox-shadow.However, the link cards (
.footer__links-column) define transitions only forbackground-colorandbox-shadow, but nottransform.Because of this, the hover transform occurs instantly, resulting in a jerky hover effect.
Issue.mp4
Note: For clearer demonstration in the attached video, the scale value was temporarily increased. The suggested fix will only add the missing transition and does not modify the existing transform behavior.
Suggested Fix
Add
transformto the transition property for.footer__links-column.