2024-05-30 02:07:37 +08:00

24 lines
312 B
CSS

#app {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
flex-grow: 1;
}
#message-list {
width: 100%;
flex-grow: 1;
max-height: 100%;
overflow-y: scroll;
}
#inputs {
display: flex;
flex-direction: row;
}
#inputs>#message-input {
flex-grow: 1;
}