Fix rounded corners on follow-up messages

This commit is contained in:
BordedDev 2025-03-08 17:25:56 +01:00
parent 5a72c8cd83
commit 98c2213a86
No known key found for this signature in database
GPG Key ID: C5F495EAE56673BF

View File

@ -111,14 +111,17 @@ a {
height: 200px;
background: #1a1a1a;
}
.container {
flex: 1;
padding: 10px;
ul {
list-style: none;
margin: 0;
padding: 0;
}
a {
font-size: 20px;
color: #f05a28;
@ -161,23 +164,26 @@ a {
color: #f05a28;
margin-bottom: 3px;
}
* {
word-break: break-word;
word-break: break-word;
overflow-wrap: break-word;
hyphens: auto;
}
.highlight pre {
white-space: pre-wrap;
word-break: break-word;
overflow-wrap: break-word;
hyphens: auto;
}
}
.chat-messages .message .message-content .text, .threads .thread .message-content .text {
margin-bottom: 5px;
color: #e6e6e6;
word-break: break-word;
overflow-wrap: break-word;
hyphens: auto;
hyphens: auto;
}
.message-content {
@ -187,7 +193,8 @@ hyphens: auto;
.message-content {
img, video, iframe, div {
max-width: 100%;
max-width: 90%;
border-radius: 20px;
}
}
@ -254,7 +261,7 @@ input[type="text"], .chat-input textarea {
}
.message.switch-user {
.text img,iframe, video {
.text img, iframe, video {
max-width: 90%;
border-radius: 20px;
}
@ -269,15 +276,15 @@ input[type="text"], .chat-input textarea {
}
}
.message:has(+ .message.switch-user), .message:last-child{
.message:has(+ .message.switch-user), .message:last-child {
.time {
display: block;
}
}
}
/* The entire scrollbar */
::-webkit-scrollbar {
display:none;
display: none;
}
::-webkit-scrollbar-track {
@ -300,8 +307,9 @@ input[type="text"], .chat-input textarea {
}
a {
text-decoration:none
text-decoration: none
}
.sidebar {
width: 250px;
background-color: #121212;