Fix: Navbar clipping outside of viewport on mobile (#433)

This commit is contained in:
1001Rem
2025-12-02 14:27:59 +03:00
committed by GitHub
parent 9865b53448
commit f021a1c0db

View File

@@ -102,6 +102,15 @@ const Navbar = () => {
.click()
}
}
/*
auto-scroll textarea into view if mobile keyboard is blocking textarea to prevent
page resize and navbar from snapping out of viewport due to using fixed heights
*/
window.visualViewport?.addEventListener("resize", () => {
window.scrollTo(0, 0);
});
const disconnectNow = () => {
const formData = new FormData()
formData.append("DISCONNECT", "YES")