Add animation to navbar links

Made links on the main navigation bar change color to white and added transition to be more consistent with the rest of the site.
This commit is contained in:
ManiacOfGitHub
2022-04-19 16:34:29 -04:00
committed by GitHub
parent c83f04f67a
commit 52ab4cba62

View File

@@ -89,6 +89,10 @@ header nav a {
margin: 0 17px;
text-decoration: none;
}
header nav a:hover {
color: var(--text);
transition: color 50ms ease-in-out;
}
.locale-dropdown {
margin-left: auto;
@@ -1173,4 +1177,4 @@ footer div.discord-server-card svg {
display: none;
}
}
}