This commit is contained in:
2023-01-12 09:48:39 +00:00
parent eb94a239e4
commit 593c8a4fa9
19 changed files with 396 additions and 30 deletions

32
src/pages/ChatPage.css Normal file
View File

@ -0,0 +1,32 @@
.dm-list {
overflow-y: auto;
overflow-x: hidden;
height: calc(100vh - 66px - 50px - 70px);
}
.dm-list > div {
display: flex;
flex-direction: column;
margin-bottom: 10px;
}
.write-dm {
position: fixed;
bottom: 0;
background-color: var(--gray-light);
width: inherit;
border-radius: 5px 5px 0 0;
}
.write-dm .inner {
display: flex;
align-items: center;
padding: 10px 5px;
}
.write-dm textarea {
resize: none;
}
.write-dm-spacer {
margin-bottom: 80px;
}