fix(#1293): override global li padding on agent menu separator

common.css sets `li { padding: 0.5em 0 }` globally. The .agent-menu-sep
li inherits this, bloating the 1px separator into a ~16px thick bar.

Add `padding: 0` to .agent-menu-sep to reset it.
This commit is contained in:
iris 2026-06-04 19:31:34 +02:00 committed by mara
commit 70832fcbf1

View file

@ -426,6 +426,7 @@ body.dashboard-shell {
height: 1px;
background: var(--purple-dim);
margin: 0.3em 0;
padding: 0;
}
/* Pending state splits queued vs running. */
.container-row.pending .actions { opacity: 0.4; pointer-events: none; }