Skip to content

Commit 9791cbc

Browse files
styled scrollbar
1 parent 4d7eafb commit 9791cbc

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

styles/globals.css

+22
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,25 @@ footer {
1717
.privacy_page {
1818
font-family: Arial, sans-serif;
1919
}
20+
21+
/* style scroll bar */
22+
23+
::-webkit-scrollbar {
24+
width: 10px;
25+
}
26+
27+
::-webkit-scrollbar-track {
28+
background: #000057;
29+
}
30+
31+
::-webkit-scrollbar-thumb {
32+
background: linear-gradient(
33+
90deg,
34+
rgb(238, 113, 40) 0%,
35+
rgb(226, 10, 100) 100%
36+
);
37+
}
38+
39+
::-webkit-scrollbar-thumb:hover {
40+
background: linear-gradient(rgb(238, 113, 3) 0%, rgb(226, 10, 96) 100%);
41+
}

0 commit comments

Comments
 (0)