navbar: Remove `:visited` color effect on button text.

The `:visited` color effect doesn't look good is not intentional.
This commit is contained in:
Aman Agrawal 2024-10-20 09:04:32 +00:00 committed by Tim Abbott
parent 18dc503865
commit 4768294bc0
1 changed files with 5 additions and 1 deletions

View File

@ -73,7 +73,11 @@ details summary::-webkit-details-marker {
transition-property: background, color;
transition-duration: 0.05s;
transition-timing-function: ease-out;
color: hsl(0deg 0% 100% / 80%);
&,
&:visited {
color: hsl(0deg 0% 100% / 80%);
}
}
.top-menu-item:hover {