From c5c1f9b3e2bf4a80da7d58f8800fd81ae1fcf1af Mon Sep 17 00:00:00 2001 From: Somashekar B R Date: Fri, 20 Sep 2024 14:50:19 +0530 Subject: [PATCH] fixed at ui height overlow --- private_gpt/ui/ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/private_gpt/ui/ui.py b/private_gpt/ui/ui.py index 3b52f85a..2ae2a229 100644 --- a/private_gpt/ui/ui.py +++ b/private_gpt/ui/ui.py @@ -377,7 +377,7 @@ class PrivateGptUi: ".contain { display: flex !important; flex-direction: column !important; }" "#component-0, #component-3, #component-10, #component-8 { height: 100% !important; }" "#chatbot { flex-grow: 1 !important; overflow: auto !important;}" - "#col { height: calc(100vh - 112px - 16px) !important; }" + "#col { min-height: calc(100vh - 112px - 16px) !important; }" "hr { margin-top: 1em; margin-bottom: 1em; border: 0; border-top: 1px solid #FFF; }" ".avatar-image { background-color: antiquewhite; border-radius: 2px; }" ".footer { text-align: center; margin-top: 20px; font-size: 14px; display: flex; align-items: center; justify-content: center; }"