Pin Notebooks header while scrolling, add divider above it (#126)

This commit is contained in:
Yuri Karamian
2026-06-20 14:45:11 +02:00
parent 828f83d2e3
commit f0f19125d5
+10
View File
@@ -1010,6 +1010,16 @@
flex: 1;
overflow-y: auto;
padding: 4px 0;
border-top: 1px solid var(--border-light);
}
/* Pin the Notebooks header so its collapse/expand-all button stays reachable while the tree
scrolls; the section's border-top draws the divider above it, matching the Tags section. (issue #126) */
.section > .section-header {
position: sticky;
top: 0;
z-index: 1;
background: var(--bg-secondary);
}
.tags-section {