JSFiddle - React, Tailwind, and code Playground
by oilvier
SCSS
@mixin custom-scrollbars {
scrollbar-width: thin;
scrollbar-color: grey white;
&::-webkit-scrollbar{
width: 4px;
}
&::-webkit-scrollbar-track{
background-color: white;
}
&::-webkit-scrollbar-thumb {
border-radius: 3px;
background: grey;
border: 3px solid white;
}
}
body {
@include custom-scrollbars;
height: 2000px;
}