Set borders for all chat styles

This commit is contained in:
Lounger 2023-12-21 05:00:56 +01:00
parent e3e053ab99
commit 6fbd64db72
2 changed files with 3 additions and 6 deletions

View File

@ -1,14 +1,8 @@
.chat-parent {
border-radius: 0 0 0 8px !important;
}
.chat { .chat {
background: var(--block-background-fill); background: var(--block-background-fill);
padding: 24px 19px; padding: 24px 19px;
padding-right: 19px !important; padding-right: 19px !important;
border: 1px solid var(--block-border-color); border: 1px solid var(--block-border-color);
border-top: none;
border-radius: 0 0 0 8px !important;
} }
.message { .message {

View File

@ -338,11 +338,14 @@ div.svelte-362y77>*, div.svelte-362y77>.form>* {
flex-direction: column; flex-direction: column;
word-break: break-word; word-break: break-word;
overflow-wrap: anywhere; overflow-wrap: anywhere;
border-top: none;
border-radius: 0 0 8px 8px !important;
} }
.chat-parent { .chat-parent {
height: calc(100dvh - 113px - var(--chat-input-offset)); height: calc(100dvh - 113px - var(--chat-input-offset));
overflow: auto !important; overflow: auto !important;
border-radius: 0 0 8px 8px !important;
} }
.old-ui .chat-parent { .old-ui .chat-parent {