DEV Community

Discussion on: Feedback on personal website

Collapse
 
alvaromontoro profile image
Alvaro Montoro

Thanks for the feedback!

I had reduced motion on and didn't see that issue 😳😅
Looking into it.

Collapse
 
afif profile image
Temani Afif • Edited

you have this rule

a:hover {
    text-decoration-color: transparent;
    transition: none;
}
Enter fullscreen mode Exit fullscreen mode

that disable the transition on hover so when you unhover, you have the offset transition. it happens on the home page on the project section (the elements that overlap)

PS: this is probably the result you want.