Skip to content

Instantly share code, notes, and snippets.

@daveycakes
Created August 11, 2025 23:22
Show Gist options
  • Select an option

  • Save daveycakes/62ef9fcb304991f5bf2ac543f4b6a682 to your computer and use it in GitHub Desktop.

Select an option

Save daveycakes/62ef9fcb304991f5bf2ac543f4b6a682 to your computer and use it in GitHub Desktop.
Order first four Mastodon menu items as Home, Notifications, Live Feeds, Trending
.navigation-panel__menu {
display: flex;
flex-direction: column;
}
.navigation-panel__menu .navigation-panel__list-panel,
.navigation-panel__menu .column-link,
.navigation-panel__menu hr,
.navigation-panel__menu .navigation-panel__legal{
order: 20;
}
.navigation-panel__menu .navigation-panel__list-panel .column-link {
order: initial;
}
.navigation-panel__menu .column-link[href="/home"] {
order: 1;
}
.navigation-panel__menu .column-link[href="/notifications"] {
order: 2;
}
.navigation-panel__menu .column-link[href^="/public"] {
order: 3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment