style(chat): fix invalid flex-justify-end classes

replace invalid flex-justify-end class with correct justify-end utility, and update the matching comment
This commit is contained in:
duanshuwen
2026-05-29 18:51:50 +08:00
parent 2417c79bd3
commit cdd510e644
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
<template>
<!-- 外层行容器接收来自父组件的对齐类 flex flex-justify-end -->
<!-- 外层行容器接收来自父组件的对齐类 flex justify-end -->
<div class="chat-mine-row">
<div class="chat-mine bg-17294E">
<span class="text-[15px] text-white">{{ text }}</span>

View File

@@ -96,7 +96,7 @@
</template>
<template v-else-if="item.msgType === MessageRole.ME">
<ChatCardMine class="flex flex-justify-end" :text="item.msg" />
<ChatCardMine class="flex justify-end" :text="item.msg" />
</template>
<template v-else>