+
查看更多
@@ -110,17 +116,25 @@ const onClipboard = () => {
position: sticky;
bottom: 0;
left: 0;
- background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
+ background: linear-gradient(
+ to bottom,
+ rgba(255, 255, 255, 0) 0%,
+ rgba(255, 255, 255, 1) 100%
+ );
color: var(--im-text-color);
}
}
-html[theme-mode='dark'] {
+html[theme-mode="dark"] {
.im-message-code {
background: var(--im-message-bg-color);
.mask {
- background: linear-gradient(to bottom, transparent 0%, var(--im-bg-color) 100%);
+ background: linear-gradient(
+ to bottom,
+ transparent 0%,
+ var(--im-bg-color) 100%
+ );
}
}
}
diff --git a/src/components/talk/message/RevokeMessage.vue b/src/components/talk/message/RevokeMessage.vue
index a3da869..4e88c0e 100644
--- a/src/components/talk/message/RevokeMessage.vue
+++ b/src/components/talk/message/RevokeMessage.vue
@@ -33,6 +33,10 @@ defineProps({
"{{ nickname }}" 撤回了一条消息 |
{{ formatTime(datetime) }}
+
+