fix: active nav state

This commit is contained in:
Cory Dransfeldt 2024-01-02 18:16:33 -08:00
parent e0a4c288a2
commit 71c3f621a6
No known key found for this signature in database

View file

@ -148,12 +148,15 @@ nav ul li:last-child {
color: var(--blue-600);
}
.active svg {
.active svg,
nav ul li .active svg {
stroke: var(--blue-600);
}
.active:hover svg,
.active svg:hover {
.active svg:hover,
nav ul li .active:hover svg,
nav ul li .active svg:hover {
stroke-width: var(--stroke-width-default);
}
@ -450,6 +453,15 @@ footer nav {
stroke: var(--blue-400);
}
.active {
color: var(--blue-400);
}
.active svg,
nav ul li .active svg {
stroke: var(--blue-400);
}
:is(.main__title, footer nav:last-child) a {
color: var(--white);
}