fix(timeline): register border color in Tailwind theme

The timeline line used `bg-border` but `--color-border` was missing from
the @theme block, so Tailwind never generated the utility class and the
line was invisible.
This commit is contained in:
Jon Seager 2026-02-05 21:44:03 +00:00
parent f1cdf75eaf
commit 05c33ed533
No known key found for this signature in database

View file

@ -65,6 +65,7 @@
--color-text: var(--text); --color-text: var(--text);
--color-text-secondary: var(--text-secondary); --color-text-secondary: var(--text-secondary);
--color-text-muted: var(--text-muted); --color-text-muted: var(--text-muted);
--color-border: var(--border);
} }
/* ── Base: default border color ────────────────────────────────── */ /* ── Base: default border color ────────────────────────────────── */