fix: reset z-index instead of inherited unset (#1528)

Co-authored-by: Aaron Pham <contact@aarnphm.xyz>
This commit is contained in:
Stephen Tse 2024-11-04 17:22:36 -08:00 committed by GitHub
parent 56ba2f4fa7
commit 74f8c13598
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -580,7 +580,7 @@ document.addEventListener("nav", async (e: CustomEventMap["nav"]) => {
function hideGlobalGraph() {
container?.classList.remove("active")
if (sidebar) {
sidebar.style.zIndex = "unset"
sidebar.style.zIndex = ""
}
}