From fa76fbf97a845bb8e6cbf1b13d24a8a6822acff0 Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Thu, 26 Feb 2026 12:32:22 +0100 Subject: [PATCH] Push arrow glyphs to edges of timeline bar Top arrow aligns content to flex-start (top edge), bottom arrow to flex-end (bottom edge), so both arrow tips sit at their respective edges instead of centering in the available space. Co-Authored-By: Claude Opus 4.6 --- js/snapshot_manager.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/js/snapshot_manager.js b/js/snapshot_manager.js index 1298816..e838437 100644 --- a/js/snapshot_manager.js +++ b/js/snapshot_manager.js @@ -2091,7 +2091,7 @@ const CSS = ` margin: 0; line-height: 1; display: flex; - align-items: center; + align-items: flex-start; justify-content: center; width: 18px; flex: 1; @@ -2100,6 +2100,9 @@ const CSS = ` opacity: 0.7; transition: opacity 0.1s, background 0.1s; } +.snap-timeline-branch-btn:last-child { + align-items: flex-end; +} .snap-timeline-branch-btn:hover { opacity: 1; background: rgba(59, 130, 246, 0.2);