Is it possible to hide "recent files" in logseq's left sidebar?

there’s one thing that’s been bothering me lately: the “recent files” section in the left sidebar.

i find it a bit distracting and would like to know if it’s possible to hide it altogether or at least make it minimized automatically. alternatively, it would be great if there was a better divider between the favorites section and the recent section.

does anyone know if this is possible? if so, could you please share how to do it? thank you!

Add this to your custom.css:

div.nav-content-item.recent.is-expand {
	display: none;
}

Alternatively use border CSS properties in the same element to create a divider.
quick example:

div.nav-content-item.recent.is-expand {
	border-top: 2px;
	border-style: solid;
}
1 Like