diff --git a/src/scripts/firefox-scroll.js b/src/scripts/firefox-scroll.js
index dd7862b022ad7d9ca4cbf3f5960b7ee41e91e56b..5f624687d0f02093eefcd89331c862faa236eaef 100644
--- a/src/scripts/firefox-scroll.js
+++ b/src/scripts/firefox-scroll.js
@@ -1,23 +1,55 @@
 document.addEventListener("DOMContentLoaded", () => {
-  window.scrollTo(0, 1);
-  let scrollTop = 1;
-  let fromTop = () => {
-    return window.pageYOffset || document.compatMode === "CSS1Compat" && document.documentElement.scrollTop || document.body.scrollTop || 0;
+  const resizeChat = () => {
+    let chatBox = Array.from(document.querySelectorAll("solid-xmpp-chat"))
+      .map((el) => el.shadowRoot ? el.shadowRoot.getElementById("conversejs") : false)
+      .filter((el) => el)
+      .pop();
+    if (chatBox) {
+      let chatTextArea = chatBox.querySelector(".message-form-container");
+      let ischatTextArea = setInterval(() => {
+        chatTextArea = chatBox.querySelector(".message-form-container");
+        if (chatTextArea) {
+          clearInterval(ischatTextArea);
+          if (
+            chatBox.getBoundingClientRect().height -
+            chatTextArea.getBoundingClientRect().height !=
+            chatTextArea.offsetTop
+          ) {
+            let viewportChat = Array.from(
+              document.querySelectorAll("#viewport .chat-view")
+            );
+            viewportChat.forEach(
+              (c) => (c.style.height = "calc(100vh - 106px - 57px - 4px)")
+            );
+          }
+        }
+      }, 15);
+    }
   };
+  resizeChat();
 
   let isbody = setInterval(() => {
     if (document.body) {
       clearInterval(isbody);
-      scrollTop = fromTop();
-      window.scrollTo(0, scrollTop === 1 ? 0 : 1);
+      resizeChat();
     }
   }, 15);
 
   window.addEventListener("load", () => {
     setTimeout(() => {
-      if (fromTop() < 20) {
-        window.scrollTo(0, scrollTop === 1 ? 0 : 1);
-      }
+      resizeChat();
+    }, 0);
+  });
+
+  window.addEventListener("resize", () => {
+    setTimeout(() => {
+      resizeChat();
+    }, 0);
+  });
+
+  document.addEventListener("navigate", () => {
+    setTimeout(() => {
+      resizeChat();
     }, 0);
   });
 });
\ No newline at end of file