Skip to content

Commit 938b390

Browse files
committed
Update scroll bar
1 parent bd9c27d commit 938b390

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

src/index.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,23 @@ code {
1111
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
1212
monospace;
1313
}
14+
15+
/* Scrollbar */
16+
17+
::-webkit-scrollbar {
18+
border: 2px solid rgb(255, 255, 255);
19+
width: 10px;
20+
}
21+
22+
::-webkit-scrollbar-track {
23+
background: #333333;
24+
}
25+
26+
::-webkit-scrollbar-thumb {
27+
background: #848484;
28+
border-radius: 5px;
29+
}
30+
31+
::-webkit-scrollbar-thumb:hover {
32+
background: #CECECE;
33+
}

0 commit comments

Comments
 (0)