Skip to content

Commit

Permalink
Merge pull request #138 from VinayLodhi1712/feature/scrollbar
Browse files Browse the repository at this point in the history
scroll bar added : Scroll bar added #133 done
  • Loading branch information
vansh-codes authored Oct 17, 2024
2 parents c1f301c + 195c572 commit 9d5fcc1
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions chaosweb-v@2/src/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

::-webkit-scrollbar {
width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
background: #2d1950;
}

/* Handle */
::-webkit-scrollbar-thumb {
background: rgba(178, 121, 216, 0.959);
border-radius: 12px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: rgba(222, 130, 235, 0.911);
border-radius: 12px;
}

0 comments on commit 9d5fcc1

Please sign in to comment.