添加聊天

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,38 @@
.tui-search-h5 {
&-full-screen {
position: fixed;
width: 100%;
height: 100%;
overflow: hidden;
display: flex;
flex-direction: column;
z-index: 1000;
}
&-global,
&-conversation {
width: 100%;
height: 100%;
display: flex;
flex: 1;
flex-direction: column;
}
&-conversation {
overflow: hidden;
}
&.tui-search-main-conversation {
box-shadow: none;
}
.search-input,
.search-container,
.search-result {
min-width: 0;
box-sizing: border-box;
display: flex;
flex: 1;
overflow: hidden;
}
}

View File

@@ -0,0 +1,3 @@
@import '../../../assets/styles/common';
@import './web';
@import './h5';

View File

@@ -0,0 +1,31 @@
.tui-search {
background: #EBF0F6;
&-main-global {
width: 100%;
height: fit-content;
}
&-main-conversation {
width: 100%;
height: 100%;
background: #fff;
box-shadow: 0 1px 10px 0 rgba(2,16,43,0.15);
}
.tui-search-global {
padding-bottom: 10px;
&-header {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
}
.tui-search-conversation {
width: 100%;
height: 100%;
overflow: hidden;
}
}