Hi there,
a,
button,
input {
transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
}
This particular CSS is added in the theme’s main.css
file. But this in itself doesn’t add the animation. It’s simply for transition if/when you set a different color for hover state.
2) What’s the best way to remove it?
You can add this CSS but this only removes the transition effect. The change itself is applied on the different states of the element. (:hover
, :focus
, :visited
and the default)
a, button, input {
transition: none;
}