JSFiddle - React, Tailwind, and code Playground

HTML

<div class="a">
    <div class="b">Content</div>
</div>

CSS

html, body, div {
  cursor: pointer;
}

.a {
  width: 200px;
  height: 300px;
  overflow: auto;
}

.b {
  width: 400px;
  height: 600px;
}

::-webkit-scrollbar-corner {
	background: none;
	cursor: wait;
}

::-webkit-scrollbar {
	background: none;
	height: 5px;
	width: 5px;
	cursor: wait;
}

::-webkit-scrollbar-thumb {
	background-color: black;
	cursor: wait;
}

::-webkit-scrollbar-thumb:hover {
	background-color: grey;
	cursor: wait;
}