From e56a86860fea67b4a80fa10223fdbe0351f9ca94 Mon Sep 17 00:00:00 2001 From: juanatsap Date: Thu, 9 Apr 2026 12:56:56 +0100 Subject: [PATCH] fix: scroll to CV section aligns to top instead of center --- templates/partials/widgets/chat-widget.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/partials/widgets/chat-widget.html b/templates/partials/widgets/chat-widget.html index 9ae288f..49fb751 100644 --- a/templates/partials/widgets/chat-widget.html +++ b/templates/partials/widgets/chat-widget.html @@ -319,7 +319,7 @@ function scrollToCV(link) { var anchor = link.getAttribute('href'); var target = document.querySelector(anchor); if (target) { - target.scrollIntoView({ behavior: 'smooth', block: 'center' }); + target.scrollIntoView({ behavior: 'smooth', block: 'start' }); target.classList.add('chat-highlight'); setTimeout(function() { target.classList.remove('chat-highlight'); }, 2000); }