添加聊天

This commit is contained in:
bobobobo
2025-12-30 23:28:59 +08:00
parent d0cf491201
commit 2294b3b76e
450 changed files with 37066 additions and 96 deletions

View File

@@ -0,0 +1,46 @@
.tui-chat {
width: 100%;
height: 100%;
max-width: 100%;
overflow: hidden;
box-sizing: border-box;
display: flex;
flex-direction: column;
position: relative;
&-default {
width: 100%;
height: 100%;
box-sizing: border-box;
display: flex;
}
&-header {
padding: 10px;
box-sizing: border-box;
display: flex;
}
&-message-list {
flex: 1;
overflow: hidden;
display: flex;
}
&-leave-group {
font-size: 14px;
height: 160px;
border-top: 1px solid #efefef;
justify-content: center;
align-items: center;
&-mobile {
height: 50px;
}
}
&-message-input {
height: 160px;
display: flex;
}
}