DEV Community

Discussion on: Feedback on personal website

Collapse
 
afif profile image
Temani Afif • Edited

the outline transition you are applying to your projects look a bit buggy probably due to the outline-offset you are adding on hover. Maybe add the outline-offset to the non-hover state to avoid the small jump.

But nice website, the colors are great

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.