I noticed in the demonstration of Creative Tim's Material Dashboard 2 (free version) that the sidebar footer takes up a significant amount of space, up to 360px tall. This causes some menu items to be hidden if the browser window is not tall enough.
Is there a way to remove the footer altogether?
Upon inspecting the CSS classes of the navigation items, it seems that the culprit is:
.navbar-vertical.navbar-expand-xs .navbar-collapse {
height: calc(100vh - 360px);
}
Despite trying to remove the sidebar footer with the class .sidenav-footer
, the 360px space still remains occupied. How can I eliminate the sidebar footer and free up this space? Is there an official CSS class for this?
The official documentation does not provide much information on customizing the sidebar.