Update css

This commit is contained in:
Laura Hausmann 2021-06-23 21:05:28 +02:00
parent 2c02e78afa
commit 32e7caa48b
Signed by: zotan
GPG key ID: D044E84C5BE01605

View file

@ -53,3 +53,25 @@ li {
.selected {
color: #8cd8cd;
}
/* Scrollbar colors */
/* Works on Firefox */
* {
scrollbar-width: thin;
scrollbar-color: #161616 grey;
}
/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 6px;
}
*::-webkit-scrollbar-track {
background: #161616;
}
*::-webkit-scrollbar-thumb {
background-color: grey;
border-radius: 20px;
}