From c4290bf5be01b528402d4e89910d57f5c7fa5dd7 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 23 May 2026 14:15:59 +0000 Subject: [PATCH] Fix bullet alignment for wrapped links in article lists Inline-block links inside
  • were defaulting to baseline alignment, which for multi-line inline-blocks is the last line-box. That pushed the list marker down next to the link's last line on narrow viewports. Aligning to top keeps the marker beside the first line. --- src/css/style.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/src/css/style.scss b/src/css/style.scss index ea20803..ae38624 100644 --- a/src/css/style.scss +++ b/src/css/style.scss @@ -126,6 +126,7 @@ article { a { display: inline-block; + vertical-align: top; } }