diff --git a/components/Message.vue b/components/Message.vue index 4f76646..c9a8331 100644 --- a/components/Message.vue +++ b/components/Message.vue @@ -204,7 +204,7 @@ function getDayDifference(date1: Date, date2: Date) { */ .mentioned { - background-color: var(--secondary-color); + background-color: rgba(90, 255, 200, 0.123); } diff --git a/components/MessageReply.vue b/components/MessageReply.vue index 0e069aa..8ba0902 100644 --- a/components/MessageReply.vue +++ b/components/MessageReply.vue @@ -77,10 +77,11 @@ function scrollToReply(e: MouseEvent) { } #reply-text { - color: var(--secondary-text-color); + color: rgb(150, 150, 150); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; + margin-bottom: 0; }