From 54c199c8bf415b2059d09a80ff50f801c265ee5e Mon Sep 17 00:00:00 2001 From: Niek van der Maas Date: Mon, 6 Mar 2023 13:54:51 +0100 Subject: [PATCH] Swap border on user messages --- src/app.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/app.scss b/src/app.scss index 6273ee8..d90f1af 100644 --- a/src/app.scss +++ b/src/app.scss @@ -27,6 +27,11 @@ a.is-disabled { text-decoration: none !important; } +/* Swap the border on user messages to the other side */ +.usermessage > .message-body { + border-width: 0 4px 0 0 !important; +} + /* Show the edit button on hover of the chat name */ .chat-header:hover .editbutton { display: inline !important;