Skip to content

Commit f40bfc7

Browse files
authored
Merge pull request #20 from intelowlproject/develop
fixed Scroll Bar Appearance #18 (#19)
2 parents 30d9ae9 + 9d8bcaf commit f40bfc7

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

src/app/globals.css

+19
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,23 @@ body {
2828
rgb(var(--background-end-rgb))
2929
)
3030
rgb(var(--background-start-rgb));
31+
overflow-x: hidden;
32+
33+
}
34+
body::-webkit-scrollbar {
35+
width: 8px;
36+
}
37+
body::-webkit-scrollbar-track {
38+
background-color: #0E1016;
39+
40+
}
41+
42+
body::-webkit-scrollbar-thumb {
43+
background-color: #2c2c2c;
44+
45+
}
46+
47+
body::-webkit-scrollbar-thumb:hover {
48+
background-color: #555;
3149
}
50+

0 commit comments

Comments
 (0)