How to make your own Scrollbar
Step One:
Copy the code below and change the colours, thickness, etc
::-webkit-scrollbar {
Learn More here
width: 10px;
}
::-webkit-scrollbar-track {
background-color: #fbf6f0;
border-radius: 5px;
}
::-webkit-scrollbar-thumb {
background: #ec5858;
}
::-webkit-scrollbar-thumb:hover {
background: #f05454;
cursor: pointer;
}
Step Two
Upload your code here!