Skip to content

Commit

Permalink
Merge pull request #610 from Coding-Charvi/scroll_styled
Browse files Browse the repository at this point in the history
scrollbar styled in the blog page
  • Loading branch information
Suchitra-Sahoo authored Jun 1, 2024
2 parents 56131c9 + e84a47d commit 275cd35
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions blogpagestyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,26 @@ body {

color: var(--txt-color);
}
body::-webkit-scrollbar {
display: none;
::-webkit-scrollbar {
width: 10px;
}
body {
scrollbar-width: none;

/* Track */
::-webkit-scrollbar-track {
background: #0e4b16;

}

/* Handle */
::-webkit-scrollbar-thumb {
background: darkgray;
border-radius: 10px;

}

::-webkit-scrollbar-thumb:hover {
background: darkgrey;

}
section {
min-height: 100vh;
Expand Down

0 comments on commit 275cd35

Please sign in to comment.