Change main scrollbar colors. (Only for Firefox)

Example: https://imgur.com/a/pjJ0wuL
This commit is contained in:
LukasDoesDev 2020-12-09 23:10:52 +02:00
parent 4c3c0eb16b
commit cc0c036f79

View File

@ -63,3 +63,16 @@
.term-nav-item {
padding: 1%;
}
/* Fix body scrollbar color */
body { background-color: var(--dark) !important; /* Firefox */ }
/* Webkit */
/* Didn't really work out
::-webkit-scrollbar { background-color: #202538; }
::-webkit-scrollbar-button { background-color: #1D212F; }
::-webkit-scrollbar-thumb { background-color: #777A86; }
::-webkit-scrollbar-thumb:hover { background-color: #646773; }
::-webkit-scrollbar-track { background-color: #202538; }
::-webkit-scrollbar-corner { background-color: #202538; }*/