1
0
Fork 0
forked from Mirrors/gomuks
nyxmuks/web/src/ui/roomview/RoomView.css
Sumner Evans 35b9397381
web/typing: render typing notifications below composer
Signed-off-by: Sumner Evans <sumner.evans@automattic.com>
2024-12-08 21:47:55 -07:00

15 lines
237 B
CSS

div.room-view {
grid-area: roomview;
overflow: hidden;
height: 100%;
display: grid;
outline: none;
grid-template:
"header" 3.5rem
"messageview" 1fr
"autocomplete" 0
"input" auto
"typing" auto
/ 1fr;
contain: strict;
}