66 lines
1.3 KiB
Plaintext
66 lines
1.3 KiB
Plaintext
/** index.wxss **/
|
|
.container {
|
|
overflow: hidden;
|
|
height: 100%;
|
|
}
|
|
|
|
.bothContainer {
|
|
margin: 5vh auto;
|
|
// margin-top: 5vh;
|
|
width: 90%;
|
|
min-width: 600px;
|
|
height: 80vh;
|
|
display: flex;
|
|
flex-direction: row;
|
|
background-color: #fff;
|
|
box-shadow: 0 11px 20px 0 rgb(0 0 0 / 30%);
|
|
}
|
|
|
|
.dialogContainer {
|
|
margin-top: unset;
|
|
width: 100%;
|
|
height: 80vh;
|
|
}
|
|
|
|
.inner {
|
|
display: flex;
|
|
overflow: scroll;
|
|
flex-direction: column;
|
|
// margin-top: 50px;
|
|
overflow-x: hidden;
|
|
height: 100%;
|
|
}
|
|
|
|
.conversationContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 300px;
|
|
border-right: 1px solid var(--oak-border-color);
|
|
|
|
.messageNumberBox {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
padding: 0 10px;
|
|
height: 40px;
|
|
justify-content: space-between;
|
|
|
|
border-top: 1px solid var(--oak-border-color);
|
|
border-bottom: 1px solid var(--oak-border-color);
|
|
|
|
.messageText {
|
|
font-size: 16px;
|
|
color: var(--oak-text-color-primary);
|
|
}
|
|
|
|
.numberText {
|
|
font-size: 16px;
|
|
color: var(--oak-text-color-primary);
|
|
}
|
|
|
|
.clearIcon {
|
|
font-size: 16px;
|
|
color: var(--oak-text-color-secondary);
|
|
}
|
|
}
|
|
} |