From 54387c2df4f26380b6f076159a8520d5fff8a945 Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Thu, 26 Feb 2026 12:25:29 +0100 Subject: [PATCH] Fix top arrow position with negative margin Use margin-bottom:-3px on the top arrow to compensate for the Unicode glyph's built-in whitespace and pull it tight against the marker. Co-Authored-By: Claude Opus 4.6 --- js/snapshot_manager.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/snapshot_manager.js b/js/snapshot_manager.js index 30e4894..900da83 100644 --- a/js/snapshot_manager.js +++ b/js/snapshot_manager.js @@ -2089,7 +2089,7 @@ const CSS = ` margin: 0; line-height: 1; display: flex; - align-items: flex-end; + align-items: center; justify-content: center; width: 18px; height: 8px; @@ -2098,8 +2098,8 @@ const CSS = ` opacity: 0.7; transition: opacity 0.1s, background 0.1s; } -.snap-timeline-branch-btn:last-child { - align-items: flex-start; +.snap-timeline-branch-btn:first-child { + margin-bottom: -3px; } .snap-timeline-branch-btn:hover { opacity: 1;