fix: scroll to CV section aligns to top instead of center

This commit is contained in:
juanatsap
2026-04-09 12:56:56 +01:00
parent f8b48b92a3
commit e56a86860f
+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);
}