Skip to content

Commit

Permalink
fixed Scroll Bar Appearance #18 (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
g4ze authored Jan 5, 2024
1 parent 5e039b1 commit 9d8bcaf
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,23 @@ body {
rgb(var(--background-end-rgb))
)
rgb(var(--background-start-rgb));
overflow-x: hidden;

}
body::-webkit-scrollbar {
width: 8px;
}
body::-webkit-scrollbar-track {
background-color: #0E1016;

}

body::-webkit-scrollbar-thumb {
background-color: #2c2c2c;

}

body::-webkit-scrollbar-thumb:hover {
background-color: #555;
}

0 comments on commit 9d8bcaf

Please sign in to comment.