/*
Reverse the order of the items in the site nav.
https://help.obsidian.md/publish/customize#Static+assets
*/

/*
This snippet contains the folder.

.tree-item-self[data-path='folder'] + .tree-item-children {
  display: flex;
  flex-direction: column-reverse;
}
*/

.tree-item-self + .tree-item-children {
  display: flex;
  flex-direction: column-reverse;
}