From 05c33ed53354a035e66bced5a44f09899960b445 Mon Sep 17 00:00:00 2001 From: Jon Seager Date: Thu, 5 Feb 2026 21:44:03 +0000 Subject: [PATCH] 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. --- static/css/input.css | 1 + 1 file changed, 1 insertion(+) diff --git a/static/css/input.css b/static/css/input.css index 5ae3f58..4cad790 100644 --- a/static/css/input.css +++ b/static/css/input.css @@ -65,6 +65,7 @@ --color-text: var(--text); --color-text-secondary: var(--text-secondary); --color-text-muted: var(--text-muted); + --color-border: var(--border); } /* ── Base: default border color ────────────────────────────────── */