first implementation

This commit is contained in:
2024-05-29 18:49:28 +08:00
commit 3079e602c8
31 changed files with 5415 additions and 0 deletions

View File

@ -0,0 +1,23 @@
#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;
}

View File

@ -0,0 +1,14 @@
body {
margin: 0;
padding: 0;
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
}
#content {
width: 100%;
flex-grow: 1;
}