fix: scroll to CV section aligns to top instead of center
This commit is contained in:
@@ -319,7 +319,7 @@ function scrollToCV(link) {
|
|||||||
var anchor = link.getAttribute('href');
|
var anchor = link.getAttribute('href');
|
||||||
var target = document.querySelector(anchor);
|
var target = document.querySelector(anchor);
|
||||||
if (target) {
|
if (target) {
|
||||||
target.scrollIntoView({ behavior: 'smooth', block: 'center' });
|
target.scrollIntoView({ behavior: 'smooth', block: 'start' });
|
||||||
target.classList.add('chat-highlight');
|
target.classList.add('chat-highlight');
|
||||||
setTimeout(function() { target.classList.remove('chat-highlight'); }, 2000);
|
setTimeout(function() { target.classList.remove('chat-highlight'); }, 2000);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user