From ba8abee25613cead7f0722f7b095a5ec24722400 Mon Sep 17 00:00:00 2001 From: SauceyRed Date: Sat, 12 Jul 2025 17:55:16 +0200 Subject: [PATCH] style(ui): adjust margin of message replies in chat --- components/MessageReply.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/MessageReply.vue b/components/MessageReply.vue index 47ac3ec..f60c0bc 100644 --- a/components/MessageReply.vue +++ b/components/MessageReply.vue @@ -1,7 +1,7 @@ @@ -61,7 +61,6 @@ function scrollToReply(e: MouseEvent) { #message-reply, .message-reply-preview { display: flex; text-align: left; - border-bottom: 1px solid var(--padding-color); margin-bottom: .5rem; cursor: pointer; overflow: hidden; @@ -72,7 +71,6 @@ function scrollToReply(e: MouseEvent) { } .message-reply-preview { - width: 30%; margin-left: .5dvw; } @@ -82,6 +80,8 @@ function scrollToReply(e: MouseEvent) { text-overflow: ellipsis; white-space: nowrap; margin-bottom: 0; + margin-top: .2rem; + border-bottom: 1px solid var(--padding-color); }