Background smooth fade-in hover effect

Adding a short transition makes the color change feel more natural, less jarring.

css
.item {
transition: background 0.15s ease-in-out;
}
.item:hover {
background: #f6f6f6;
}
Want to make your own site like this? Try gatsby-theme-code-notes by Zander Martineau.
Travis Ricks Code Notes