ux(classifier): tighten Folder Tree row spacing

Folder rows kept 0.5rem padding from before the name+count were stacked, leaving
a lot of blank vertical space between items. Drop to 0.1rem vertical (file rows
are already this tight) and set a compact line-height.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
ZDDC 2026-06-16 07:19:49 -05:00
parent bfa94d0da8
commit 10474c549e

View file

@ -185,11 +185,12 @@
.folder-item {
display: flex;
align-items: flex-start; /* toggle/icon sit on the name line; count drops below */
padding: 0.5rem;
padding: 0.1rem 0.5rem; /* tight: the name + count are already stacked */
cursor: pointer;
border-radius: var(--radius);
user-select: none;
transition: background-color 0.15s;
line-height: 1.25;
}
.folder-item:hover {