Skip to content

Commit c29ba53

Browse files
authored
Merge pull request #84 from Yash-RajSingh/custom-scrollbar
Added Custom Scrollbar
2 parents 40ecda4 + d35a4fe commit c29ba53

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

css/style.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14863,3 +14863,23 @@ License Terms .blog-entry {
1486314863
align-items: flex-start;
1486414864
margin-bottom: 20px;
1486514865
}
14866+
14867+
/* -- Custom Scrollbar Styling -- */
14868+
14869+
::-webkit-scrollbar{
14870+
width: 1vw;
14871+
background: #b9cfe4ad;
14872+
border: 0.5px solid #000000;
14873+
border-radius: 2px;
14874+
}
14875+
/* Handle */
14876+
::-webkit-scrollbar-thumb {
14877+
background: #84b5c0a8;
14878+
border: 0.5px solid #06164d;
14879+
border-radius: 4px;
14880+
background-clip: padding-box;
14881+
}
14882+
/* Handle on hover */
14883+
::-webkit-scrollbar-thumb:hover {
14884+
background: #59738288;
14885+
}

0 commit comments

Comments
 (0)