This commit is contained in:
Moritz Utcke
2025-03-06 16:22:38 -03:00
parent 1c0a391c16
commit 534b26080d
4 changed files with 37 additions and 17 deletions

View File

@@ -22,6 +22,20 @@ const { title } = Astro.props;
const skala = document.getElementById("skala");
if (skala?.classList.contains("no-scroll")) {
if (skala) {
skala.classList.remove(
"2xl:fixed",
"2xl:py-4",
"2xl:top-0",
"2xl:z-20"
);
skala.classList.add("w-full");
skala.style.borderBottom = "none";
}
document
.getElementById("formInput-1")
?.classList.remove("2xl:mt-[370px]");
return;
}