feat: 首页主题样式调整

This commit is contained in:
duanshuwen
2025-10-15 19:38:01 +08:00
parent 11268d5be9
commit 6c35146b36
8 changed files with 80 additions and 94 deletions

View File

@@ -7,7 +7,7 @@
<!-- 消息列表可滚动区域 -->
<scroll-view
class="main flex-full"
class="main flex-full overflow-hidden scroll-y"
scroll-y
:scroll-top="scrollTop"
:scroll-with-animation="true"
@@ -77,8 +77,7 @@
</template>
<template v-else-if="item.msgType === MessageRole.ME">
<ChatCardMine class="message-item-mine" :text="item.msg">
</ChatCardMine>
<ChatCardMine class="message-item-mine" :text="item.msg" />
</template>
<template v-else>

View File

@@ -1,4 +1,5 @@
.footer {
height: 118px;
// touch-action: pan-x;
padding-bottom: calc(constant(safe-area-inset-bottom) + 8px);
padding-bottom: calc(env(safe-area-inset-bottom) + 8px);
}