I'm having trouble understanding why this issue is occurring. I have a link element that utilizes CSS transitions to create a fade effect into a gradient background on hover. Strangely, when I set the text color to white on hover, the transition stops working.
.social-item {
margin-left: 0.25vw;
padding: 0.1vw;
transition: 0.2s;
color: white;
}
.social-item:hover {
background: linear-gradient(to left, #8E2DE2, #DC0486);
color: white;
}
<a href="https://google.com" class="social-item"><i class="fab fa-keybase"></i> Keybase</a>
Furthermore, I am utilizing Bulma and Font Awesome in my project.