I've chosen to implement the Vali Admin theme and am currently attempting to move the last list item in the left sidebar to the bottom.
While I have limited experience with flexbox, I decided to change the menu to display: flex
and followed the steps outlined in this answer to achieve the desired effect. My objective is to replicate the exact outcome described in that reference.
Here are the adjustments I made to the theme:
.app-menu {
@extend .app-menu;
display: flex;
flex-wrap: wrap;
flex-direction: column;
justify-content: flex-start;
li:last-of-type {
margin-top: auto;
}
}
You can view a functioning example in this fiddle.
It seems that the issue may be related to the menu not utilizing its full height potential.
I would be happy to provide a working snippet, but unfortunately, I struggled to create one using jsfiddle. Local files are not allowed, and it poses an issue with my gist as well as Codepen.