From be2163725ae314de3aa9a56c1216ce8c774cfcc6 Mon Sep 17 00:00:00 2001 From: David Rivera <38964764+dajrivera@users.noreply.github.com> Date: Thu, 24 Jul 2025 19:29:25 -0700 Subject: [PATCH] fix: heading link overflow style (#2568) Co-authored-by: Luffy --- src/themes/shared/_markdown.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/themes/shared/_markdown.css b/src/themes/shared/_markdown.css index 867f7fdb..43ddc652 100644 --- a/src/themes/shared/_markdown.css +++ b/src/themes/shared/_markdown.css @@ -251,7 +251,8 @@ /* Prevent long titles from causing horizontal scrolling */ &[id] a { - overflow: hidden; + overflow-x: clip; + overflow-y: visible; text-overflow: ellipsis; } }