fix: chat nav scroll to top

This commit is contained in:
juanatsap
2026-04-09 12:56:59 +01:00
+1 -1
View File
@@ -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);
}