2023-03-12 15:34:09 -04:00
|
|
|
.message {
|
|
|
|
display: grid;
|
2023-04-11 13:41:29 -04:00
|
|
|
grid-template-columns: 60px minmax(0, 1fr);
|
2024-01-01 22:50:13 -05:00
|
|
|
padding-bottom: 15px;
|
2023-03-12 15:34:09 -04:00
|
|
|
font-size: 15px;
|
2023-09-13 16:29:00 -04:00
|
|
|
font-family: 'Noto Sans', Helvetica, Arial, sans-serif;
|
2023-10-20 15:30:01 -04:00
|
|
|
line-height: 22.5px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-body {
|
2023-10-20 17:04:14 -04:00
|
|
|
margin-top: 3px;
|
2023-03-12 15:34:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.circle-you {
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
2023-10-20 16:02:18 -04:00
|
|
|
background-color: rgb(238 78 59);
|
2023-03-12 15:34:09 -04:00
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.circle-bot {
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
2023-10-20 16:02:18 -04:00
|
|
|
background-color: rgb(59 78 244);
|
2023-03-12 15:34:09 -04:00
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.circle-bot img,
|
|
|
|
.circle-you img {
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
|
|
|
|
.username {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-body img {
|
|
|
|
max-width: 300px;
|
|
|
|
max-height: 300px;
|
|
|
|
border-radius: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-body p {
|
|
|
|
font-size: 15px !important;
|
2023-10-20 15:30:01 -04:00
|
|
|
line-height: 22.5px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message-body p, .chat .message-body ul, .chat .message-body ol {
|
2023-10-20 17:04:14 -04:00
|
|
|
margin-bottom: 10px !important;
|
2023-10-20 15:30:01 -04:00
|
|
|
}
|
|
|
|
|
2023-03-12 15:34:09 -04:00
|
|
|
.dark .message-body p em {
|
2023-10-20 16:02:18 -04:00
|
|
|
color: rgb(138 138 138) !important;
|
2023-03-12 15:34:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.message-body p em {
|
2023-10-20 16:02:18 -04:00
|
|
|
color: rgb(110 110 110) !important;
|
2023-09-14 20:18:59 -04:00
|
|
|
font-weight: 500;
|
2023-03-12 15:34:09 -04:00
|
|
|
}
|