Commit 8897a3b1 authored by nick zheng's avatar nick zheng

Merge branch 'beta' into 'master'

fix(应用): 网址不明显

See merge request !219
parents 44c21984 2a6a7b35
......@@ -156,7 +156,7 @@ const handleContentCopy = throttle(
<div class="flex min-w-[80px] max-w-full flex-col items-start overflow-x-auto">
<div
class="w-full flex-wrap rounded-xl border border-[#e8e9eb] px-4 py-[11px]"
:class="role === 'user' ? 'bg-[#4b87ff] text-white' : 'bg-white text-[#333]'"
:class="role === 'user' ? 'user-content-container bg-[#4b87ff] text-white' : 'bg-white text-[#333]'"
>
<img
v-show="role === 'user' && messageItem.imageUrl"
......@@ -276,3 +276,11 @@ const handleContentCopy = throttle(
</div>
</div>
</template>
<style lang="scss" scoped>
:deep(.user-content-container) {
a {
color: #fff !important;
}
}
</style>
......@@ -174,7 +174,7 @@ const handleContentCopy = throttle(
<div class="flex min-w-[80px] flex-col" :class="[isMobile ? 'max-w-[calc(100%-20px)]' : 'max-w-full']">
<div
class="w-full flex-wrap rounded-xl border border-[#e8e9eb] px-4 py-[11px]"
:class="[role === 'user' ? 'bg-theme-color text-white' : 'bg-white text-[#333]']"
:class="[role === 'user' ? 'user-content-container bg-theme-color text-white' : 'bg-white text-[#333]']"
>
<img
v-show="role === 'user' && messageItem.imageUrl"
......@@ -306,3 +306,11 @@ const handleContentCopy = throttle(
<EditorDrawer v-model:is-show-editor-drawer="isShowEditorDrawer" v-model:content-edit="editorDrawerContent" />
</template>
<style lang="scss" scoped>
:deep(.user-content-container) {
a {
color: #fff !important;
}
}
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment