Compare commits

...

2 Commits

Author SHA1 Message Date
librelad
209ced11be Merge claude/2 2026-06-25 20:54:42 +01:00
librelad
246e687e45 fix(webui/tasks): equalize task-list panel top/bottom padding
The last task tile's 10px bottom margin stacked on the list's 16px bottom
padding, leaving a larger gap below the last row than above the first.
Zero the last tile's bottom margin so the dark panel reads symmetric.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Signed-off-by: librelad <librelad@digitalangels.vip>
2026-06-25 20:54:42 +01:00

View File

@ -272,6 +272,13 @@
box-shadow: inset 0 1px 0 rgba(var(--text-rgb), 0.10);
}
/* The last tile's bottom margin would stack on the list's 16px bottom padding,
leaving more gap below the last row than above the first. Drop it so the dark
panel's inner padding reads equal top and bottom. */
.task-item:last-child {
margin-bottom: 0;
}
.task-header {
padding: 4px 16px;
display: flex;