Merge pull request #1062 from lindenkron/pop-out-again

Pop-out-again
This commit is contained in:
Steve Seguin 2023-04-16 16:01:47 -04:00 committed by GitHub
commit d8282852f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,7 +49,7 @@ body{
overflow-y: auto;
}
.outMessage {
.outMessage, .inMessage {
display: flex;
align-items: center;
justify-content: flex-end;
@ -63,6 +63,11 @@ body{
padding: 2px 5px;
}
.inMessage {
color: var(--discord-text);
background-color: var(--discord-grey-7);
}
.outMessage .chat_message {
font-weight: bold;
}
@ -97,23 +102,22 @@ body{
}
/* SCROLL BAR STYLING */
::-webkit-scrollbar {
width: 12px; /* Set the width of the scrollbar for WebKit browsers */
width: 12px;
}
::-webkit-scrollbar-track {
background-color: var(--discord-grey-1); /* Set the background color of the scrollbar track */
border-radius: 4px; /* Set the border radius of the scrollbar track */
background-color: var(--discord-grey-1);
border-radius: 4px;
}
::-webkit-scrollbar-thumb {
background-color: var(--discord-grey-7); /* Set the background color of the scrollbar thumb */
border-radius: 4px; /* Set the border radius of the scrollbar thumb */
background-color: var(--discord-grey-7);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background-color: var(--discord-grey-8); /* Set the background color of the scrollbar thumb on hover */
background-color: var(--discord-grey-8);
}
</style>