From 682b70011f1ef25f4f1d171fa506d77ec4569a07 Mon Sep 17 00:00:00 2001 From: Debanjum Singh Solanky Date: Sun, 25 Feb 2024 14:10:54 +0530 Subject: [PATCH] Set chat body height to remove UX jitter on chat history load in Web, Desktop --- src/interface/desktop/chat.html | 1 + src/khoj/interface/web/chat.html | 1 + 2 files changed, 2 insertions(+) diff --git a/src/interface/desktop/chat.html b/src/interface/desktop/chat.html index 3d281dfb..51c3f0b6 100644 --- a/src/interface/desktop/chat.html +++ b/src/interface/desktop/chat.html @@ -1196,6 +1196,7 @@ #chat-body { + height: 100%; font-size: small; margin: 0px; line-height: 20px; diff --git a/src/khoj/interface/web/chat.html b/src/khoj/interface/web/chat.html index af4f498e..e1b19183 100644 --- a/src/khoj/interface/web/chat.html +++ b/src/khoj/interface/web/chat.html @@ -1263,6 +1263,7 @@ To get started, just start typing below. You can also type / to see a list of co } #chat-body { + height: 100%; font-size: medium; margin: 0px; line-height: 20px;