@@ -7,7 +7,7 @@ interface Props {
export default ({text}:Props) => {
return <View className="flex justify-end">
<View className={`${style.message } ${style.messageMe}`}>
- <View className={`${style.messageContent}`}>
+ <View className={`${style.messageContent} text-white`}>
{text.length === 0 && <ThinkAnimation></ThinkAnimation>}
<Text>{text}</Text>
</View>
@@ -148,7 +148,7 @@ export default ({ agent, text, message, textReasoning = "" }: Props) => {
)}
<View className={`${style.message} ${style.messageRobot} gap-10`}>
- <View className={style.messageContent}>
+ <View className={`${style.messageContent}`}>
{/* {textReasoning && <View className={style.deepThinkContainer}>
<View className="font-bold">深度思考:</View>
<Text>
@@ -48,7 +48,6 @@
.messageContent{
font-size: 15px;
line-height: 28px;
- color: white;
word-break: break-all;
font-family: PingFang SC;
}