Intentional CSS :hover effects 🎈
Add a small transition-delay
so you know the :hover
is intentional. See the difference below 🎞️
a::after { transition: scale 0.2s ease-in-out; }
vs.
a::after { transition: scale 0.2s 0.125s ease-in-out; }
Can be useful for some designs 🤙