23 lines
290 B
CSS
Raw Normal View History

2024-05-29 18:49:28 +08:00
#app {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
flex-grow: 1;
}
#message-list {
width: 100%;
flex-grow: 1;
overflow-y: scroll;
}
#inputs {
display: flex;
flex-direction: row;
}
#inputs>#message-input {
flex-grow: 1;
}