first implementation
This commit is contained in:
23
chat-signaling-server/static/index.css
Normal file
23
chat-signaling-server/static/index.css
Normal 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;
|
||||
}
|
14
chat-signaling-server/static/style.css
Normal file
14
chat-signaling-server/static/style.css
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user