JSFiddle - React, Tailwind, and code Playground

by Vignesh Gopalakrishnan

HTML

<div></div>

CSS

html, body, div {
    height:100%;
    width:100%;
    margin:0;
    padding:0;
}
div {
    height:200%;
}
::-webkit-scrollbar {
    -webkit-appearance: none;
}
::-webkit-scrollbar:vertical {
    width: 12px;
}
::-webkit-scrollbar:horizontal {
    height: 12px;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .5);
    border-radius: 10px;
    border: 2px solid #ffffff;
}
::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #ffffff;
}