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 <noreply@anthropic.com>
This commit is contained in:
Till-JS 2026-01-29 16:20:23 +01:00
parent 1348fca84d
commit ff56030b72

View file

@ -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;
}