Skip to content

Commit

Permalink
Added ScrollBar in Blogs page
Browse files Browse the repository at this point in the history
  • Loading branch information
Tejashri-Taral committed Aug 10, 2024
1 parent 165df2c commit 177f23f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="blog.css">
<link rel="icon" type="image/x-icon" href="favicon.ico"/>
<style>
::-webkit-scrollbar{
width: 15px;
}

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

::-webkit-scrollbar-thumb{
background: linear-gradient( 90deg,rgb(63, 120, 244),rgb(245, 89, 239) );
border-radius: 10px;
height: 100px;
}
</style>
</head>

<body>
Expand Down

0 comments on commit 177f23f

Please sign in to comment.