@hosch By any chance is it possible to move it higher up? I’d like it to appear after the Community section, or possibly even before it.
Edit: Looks like it’s possible with a variation on this:
Rearrange Existing Hamburger Menu Items - #3 by awesomerobot
.sidebar-sections {
display: flex; /* Setup a flex layout so you can reorder things */
flex-direction: column;
.sidebar-section-community {
order: -1;
}
}
I wonder about moving it to the highest position?