fix: active nav state
This commit is contained in:
parent
e0a4c288a2
commit
71c3f621a6
1 changed files with 14 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Reference in a new issue