nav-level2.active and nav-level3 active: border color

This commit is contained in:
sparkyx 2024-09-23 11:54:49 +02:00
parent 1252c68aad
commit 867642a206

View file

@ -3735,3 +3735,21 @@ h2.h-section {
transform: scale(1);
background-color: darkred;
}
/**
* For level 2 and 3 no animation but border difference if active
*/
.nav-level2 .nav-link.active::after, .nav-level3 .nav-link.active::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
background-color:darkorange;
height: 3px;
}
.nav-level3 .nav-link.active::after {
background-color:yellow;
}