34 lines
551 B
CSS
34 lines
551 B
CSS
.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;
|
|
scroll-padding-bottom: 40px;
|
|
}
|
|
|
|
.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;
|
|
}
|