From f3fab45bf03a2a94675e568802635a5e4faeb914 Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Thu, 26 Feb 2026 12:20:40 +0100 Subject: [PATCH] Fix timeline top arrow not mirroring bottom arrow position Reduce arrow button font-size and height from 8px to 6px and set line-height to 0 so both arrows sit symmetrically 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 18fa57f..e05b52f 100644 --- a/js/snapshot_manager.js +++ b/js/snapshot_manager.js @@ -2083,16 +2083,16 @@ const CSS = ` background: none; border: none; color: #3b82f6; - font-size: 8px; + font-size: 6px; cursor: pointer; padding: 0; margin: 0; - line-height: 1; + line-height: 0; display: flex; align-items: center; justify-content: center; width: 18px; - height: 8px; + height: 6px; border-radius: 2px; flex-shrink: 0; opacity: 0.7;