JSFiddle - React, Tailwind, and code Playground
by mtsgi
HTML
<div class="container">
<div class="inner"></div>
</div>
CSS
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
border-radius: 10px;
box-shadow: inset 0 0 5px rgba(0, 0, 0, .1);
}
::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 50, .5);
border-radius: 10px;
box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
.container{
width: 100%;
height: 400px;
overflow: scroll;
}
.inner{
background-image: url("http://lorempixel.com/800/800/");
background-repeat: no-repeat;
width:100%;
height:800px;
}