How can I overlay vertical sidebar when expanded, rather than pushing content to the right?
Use fixed
position:
.clr-vertical-nav {
position: fixed;
height: 100%;
}
You will also need to use margin
on your content to make sure it is not partly covered when menu is closed.
.content-area {
margin-left: 2rem;
}