From 4f6c5522bc9ebce981fbdf4c915473337717088f Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Fri, 1 Nov 2024 20:16:51 +0200 Subject: [PATCH] Independent chat management content scroll --- public/style.css | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/public/style.css b/public/style.css index a65fcd197..96b61c759 100644 --- a/public/style.css +++ b/public/style.css @@ -4244,8 +4244,8 @@ h5 { } #select_chat_popup { - display: grid; - grid-template-rows: auto auto; + display: flex; + flex-direction: column; max-width: var(--sheldWidth); height: min-content; max-height: calc(100vh - var(--topBarBlockSize)); @@ -4265,7 +4265,7 @@ h5 { padding: 10px; background-color: var(--SmartThemeBlurTintColor); border-radius: 10px; - overflow-y: auto; + overflow-y: hidden; border: 1px solid var(--SmartThemeBorderColor); } @@ -4275,7 +4275,8 @@ h5 { #select_chat_div { padding: 0; - height: min-content; + height: 100%; + overflow-y: auto; } #select_chat_div hr {