Skip to content

Commit

Permalink
💄 ui: customize scrollbar styles globally
Browse files Browse the repository at this point in the history
Implement customized scrollbar styling to enhance UI consistency across
browsers, using thin width and matrix-dark color scheme for better
visual integration
  • Loading branch information
w3bdesign committed Dec 17, 2024
1 parent edfe922 commit 8fbcb07
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ body {
}

/* Scrollbar */
* {
scrollbar-width: thin;
scrollbar-color: var(--matrix-dark) #1a1a1a;
}

::-webkit-scrollbar {
width: 6px;
}
Expand Down

0 comments on commit 8fbcb07

Please sign in to comment.