Added custom scrollbar

This commit is contained in:
2021-05-26 20:20:56 +02:00
parent 2482ef02bd
commit 826f566ad2

View File

@ -234,3 +234,19 @@ main .chat .message {
background-color: rgba(255, 255, 255, 0.875); background-color: rgba(255, 255, 255, 0.875);
font-size: 0.875rem; font-size: 0.875rem;
} }
main .chat ::-webkit-scrollbar {
width: 4px;
}
main .chat ::-webkit-scrollbar-track {
background-color: rgba(0, 0, 0, 0);
}
main .chat ::-webkit-scrollbar-thumb {
background-color: rgba(255, 255, 255, 0.5);
}
main .chat ::-webkit-scrollbar-thumb:hover {
background-color: rgba(255, 255, 255, 0.75);
}