Skip to content

Commit

Permalink
Updated the vertical scrollbar
Browse files Browse the repository at this point in the history
  • Loading branch information
Tanushree084 committed Oct 17, 2024
1 parent a1945ec commit 3a5e89b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,24 @@ code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
::-webkit-scrollbar {
width: 8px;
}

::-webkit-scrollbar-track {
background: rgba(249, 246, 246, 0.986);
border-radius: 10px;
}

::-webkit-scrollbar-thumb {
background: rgba(31, 38, 135, 0.37);
border-radius: 10px;
transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
background-color: rgb(95, 19, 166);
}

.glassmorphism {
background: rgba(255, 255, 255, 0.25);
Expand Down

0 comments on commit 3a5e89b

Please sign in to comment.