Skip to content

Commit

Permalink
feat: customize scrollbar styles for improved aesthetics
Browse files Browse the repository at this point in the history
  • Loading branch information
vignesh-gupta committed Nov 14, 2024
1 parent 14fb5ec commit 57096ed
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Binary file modified bun.lockb
Binary file not shown.
16 changes: 16 additions & 0 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,19 @@ body {
.bg-gradient {
background: linear-gradient(180deg, #1a1a1a, #131313);
}

::-webkit-scrollbar {
@apply w-1.5
}

::-webkit-scrollbar-track {
@apply bg-accent rounded-full
}

::-webkit-scrollbar-thumb {
@apply dark:bg-gray-400/30 bg-onyx/50 rounded-full
}

::-webkit-scrollbar-thumb:hover {
background: #c0a0b9;
}

0 comments on commit 57096ed

Please sign in to comment.