Skip to content

Commit

Permalink
add gradient to Scrollbar
Browse files Browse the repository at this point in the history
  • Loading branch information
le3tspeak committed Oct 15, 2024
1 parent 5f126ff commit 47f949b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -1706,14 +1706,14 @@ input, select, textarea {
/* Custom Scrollbar */

::-webkit-scrollbar {
width: 15px;
width: 10px;
}

::-webkit-scrollbar-track {
background: #292929;
}

::-webkit-scrollbar-thumb {
background: #0d54a5;
border-radius: 10px;
background: linear-gradient(180deg, #034685 0%, #3290e7 100%);
border-radius: 5px;
}

0 comments on commit 47f949b

Please sign in to comment.