23 lines
290 B
CSS
23 lines
290 B
CSS
|
#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;
|
||
|
}
|