From 767eee1b4e14327c8a5e466a297fcdc3640ad429 Mon Sep 17 00:00:00 2001 From: LuisMSuarez <140195810+LuisMSuarez@users.noreply.github.com> Date: Sat, 20 Sep 2025 10:46:04 -0700 Subject: [PATCH] fix to chat window height To not be covered by mobile address bar --- packages/client/index.html | 3 +-- packages/client/src/App.tsx | 3 ++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/client/index.html b/packages/client/index.html index e9471d4..19fe431 100644 --- a/packages/client/index.html +++ b/packages/client/index.html @@ -2,9 +2,8 @@ - - Vite + React + TS + Chatbot
diff --git a/packages/client/src/App.tsx b/packages/client/src/App.tsx index 4dabb58..e251278 100644 --- a/packages/client/src/App.tsx +++ b/packages/client/src/App.tsx @@ -2,8 +2,9 @@ import './App.css'; import ChatBot from './components/ChatBot'; function App() { + // h-[100dvh] works like vh, but it takes into account the url bar that shows/hides on mobile browsers when you scroll. return ( -
+
);