fix: improve panel behaviour at small screen sizes

This commit is contained in:
Cat Flynn 2025-05-02 17:51:02 +01:00
parent a07c269f15
commit 34c5b35194

View File

@ -72,6 +72,9 @@ body {
max-width: 300px; max-width: 300px;
} }
#main-panel {
width: calc(100% - 300px);
}
} }
#side-panel .conversation { #side-panel .conversation {
@ -105,7 +108,7 @@ body {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: flex-end; justify-content: flex-end;
width: calc(100% - 300px); width: 100%;
} }
#page { #page {