Is there a method to mimic the unique scrollbar design used on YouTube?
Desired appearance:
https://i.sstatic.net/iSoTd.png
It appears that utilizing ::webkit-scrollbar-thumb with left and right padding can help achieve this look.
I have experimented with the following code snippet:
* {
margin: 0;
padding: 0;
::-webkit-scrollbar {
background: #181818;
width: 12px;
}
::-webkit-scrollbar-thumb {
padding: 0 4px; // Attempting to create desired effect
background: #909090;
border-radius: 100px;
&:hover {
background: #606060;
}
}
}
Unfortunately, my attempts were unsuccessful...
Outcome:
https://i.sstatic.net/Rcg3D.png
If you have any suggestions on how to accomplish the desired outcome, I would greatly appreciate it. Thank you in advance.