fix: navigation text not changing color on hover

This commit is contained in:
Sebin Nyshkim 2023-01-18 12:57:52 +01:00
parent ccf9556f3b
commit caca751b74

View file

@ -83,6 +83,10 @@ import { RouterLink } from "vue-router";
}
}
&:hover &-text {
color: var(--color-router-link-hover);
}
&:last-child {
margin: var(--navigation-link-last-child-margin);
}
@ -117,10 +121,6 @@ import { RouterLink } from "vue-router";
display: none;
font-size: var(--navigation-link-text-font-size);
margin: 0 0 0 1rem;
&:hover {
color: var(--color-router-link-hover);
}
}
}
</style>