We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06ee336 commit 8ff4699Copy full SHA for 8ff4699
1 file changed
index.html
@@ -96,9 +96,11 @@
96
}
97
98
.chat-area {
99
- flex: 1;
100
display: flex;
101
flex-direction: column;
+ flex: 1 1 0; /* Grow and shrink as needed */
102
+ min-width: 300px; /* Prevent it from becoming too narrow */
103
+ max-width: calc(100% - 200px); /* Leave space for user list */
104
105
106
.chat-box {
@@ -268,6 +270,10 @@
268
270
flex-wrap: wrap;
269
271
gap: 8px;
272
273
+ .chat-area {
274
+ max-width: 100%;
275
+ min-width: 100%;
276
+ }
277
278
279
/* System message styling */
0 commit comments