22 lines
443 B
CSS
22 lines
443 B
CSS
@media (max-width: 768px) {
|
|
.h5-chat-shell {
|
|
/* 移除固定高度,允许跟随全局滚动容器 */
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.h5-chat-main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.h5-chat-content-row {
|
|
/* 移除内部滚动,改为由 App 的 main-content 统一处理 */
|
|
min-height: 0;
|
|
}
|
|
|
|
.h5-chat-content-row .chat-body .messages-container {
|
|
padding-bottom: 2rem;
|
|
}
|
|
}
|