save broken

This commit is contained in:
isUnknown 2024-03-10 19:24:24 +01:00
parent 94d404288f
commit f04e9a66fb
17 changed files with 184 additions and 81 deletions

View file

@ -42,4 +42,11 @@ document.addEventListener("DOMContentLoaded", () => {
window.addEventListener("scroll", () => {
toggleLogoState();
});
if (
navigator.userAgent.toLowerCase().includes("safari") &&
window.innerWidth < 800
) {
document.querySelector("#tabs").classList.add("safari");
}
});