From ff56030b727fd85765d1f5e596c1955d3d6e017a Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Thu, 29 Jan 2026 16:20:23 +0100 Subject: [PATCH] fix(matrix): enable independent scrolling for panels Change layout container from min-height to fixed height with overflow hidden to allow left panel (room list) and right panel (chat messages) to scroll independently. Co-Authored-By: Claude Opus 4.5 --- apps/matrix/apps/web/src/routes/(app)/+layout.svelte | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/matrix/apps/web/src/routes/(app)/+layout.svelte b/apps/matrix/apps/web/src/routes/(app)/+layout.svelte index 8b50f9f6b..0861b4aef 100644 --- a/apps/matrix/apps/web/src/routes/(app)/+layout.svelte +++ b/apps/matrix/apps/web/src/routes/(app)/+layout.svelte @@ -273,11 +273,13 @@ .layout-container { display: flex; flex-direction: column; - min-height: 100vh; + height: 100vh; + overflow: hidden; } .main-content { flex: 1; + overflow: hidden; transition: all 300ms ease; }