fix(project): 호버 툴팁을 커서 위쪽 가운데로

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-17 15:38:50 +09:00
parent 8cc466dd17
commit 825d63ab42
5 changed files with 11 additions and 8 deletions
+2 -2
View File
@@ -4440,8 +4440,8 @@
document.body.appendChild(tipEl);
}
tipEl.textContent = text;
tipEl.style.left = (x + 14) + "px";
tipEl.style.top = (y + 18) + "px";
tipEl.style.left = x + "px";
tipEl.style.top = (y - 10) + "px";
tipEl.hidden = false;
}
function hide() { if (tipEl) tipEl.hidden = true; }