Changed Scroll Bar color

This commit is contained in:
James Dinh 2022-07-03 22:13:21 -07:00
parent 489a2825dc
commit bceb69677b
3 changed files with 21 additions and 0 deletions

BIN
.DS_Store vendored

Binary file not shown.

BIN
img/.DS_Store vendored

Binary file not shown.

View File

@ -40,6 +40,27 @@
color: #f2f1ef !important;
font-family: "Glacial Indifference";
}
/* width */
::-webkit-scrollbar {
width: 15px;
}
/* Track */
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
background-color: rgb(12, 14, 26);
}
/* Handle */
::-webkit-scrollbar-thumb {
background: rgb(38, 45, 75);
border-radius: 5px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: rgb(31, 36, 61);
}
</style>
<!--For icons, go here: https://iconsvg.xyz/ -->
</head>