fix(FN-2038): style automation count summary in schedule modal

- Add a new .scheduling-summary rule for the scheduled tasks modal
- Use token-based gap, padding, and typography to fix missing count spacing
- Align summary content with inline-flex and add a bottom border divider
This commit is contained in:
Fusion
2026-04-17 22:39:20 -07:00
committed by gsxdsm
parent 7b9a50fe32
commit 05adbcb1d1

View File

@@ -16565,6 +16565,17 @@ html .column.drag-over * {
/* ── Scheduled Tasks ──────────────────────────────────────────────── */
/* Automation count summary in scheduled tasks modal */
.scheduling-summary {
display: inline-flex;
align-items: center;
gap: var(--space-xs);
padding: var(--space-sm) var(--space-lg);
font-size: var(--text-xs, 12px);
color: var(--text-muted);
border-bottom: 1px solid var(--border);
}
.schedule-modal-content {
padding: var(--space-lg) 20px;
overflow-y: auto;