24 lines
312 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;
2024-05-30 02:07:37 +08:00
max-height: 100%;
2024-05-29 18:49:28 +08:00
overflow-y: scroll;
}
#inputs {
display: flex;
flex-direction: row;
}
#inputs>#message-input {
flex-grow: 1;
}