Hi,
You could use something like that in your sass :
/* -- stick the sidenav tag on scroll -- */
@media (min-width: 992px) {
.sideNav, .sideNav>ul {
position: sticky;
}
.App {
overflow-x: visible;
}
}
Be aware that having a lot of primary or secondary tags could affect them visibility.