JSFiddle - React, Tailwind, and code Playground

by takumi091111

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
</head>
<body>
  <div class="scroll-panel">
    <p>HogeFugaPiyoMogeMuga</p>
    <p>HogeFugaPiyoMogeMuga</p>
    <p>HogeFugaPiyoMogeMuga</p>
    <p>HogeFugaPiyoMogeMuga</p>
    <p>HogeFugaPiyoMogeMuga</p>
    <p>HogeFugaPiyoMogeMuga</p>
    <p>HogeFugaPiyoMogeMuga</p>
    <p>HogeFugaPiyoMogeMuga</p>
    <p>HogeFugaPiyoMogeMuga</p>
    <p>HogeFugaPiyoMogeMuga</p>
    <p>HogeFugaPiyoMogeMuga</p>
    <p>HogeFugaPiyoMogeMuga</p>
    <p>HogeFugaPiyoMogeMuga</p>
    <p>HogeFugaPiyoMogeMuga</p>
    <p>HogeFugaPiyoMogeMuga</p>
  </div>
</body>
</html>

SCSS

.scroll-panel {
  width: 200px;
  height: 200px;
  overflow: auto;
  border: 1px solid #CCC;
  &::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: transparent;
  }
  &::-webkit-scrollbar-thumb {
    background-color: #CCC;
  }
  &::-webkit-scrollbar-button {
    width: 0;
	  height: 0;
	  display: none;
  }
  &::-webkit-scrollbar-track, &::-webkit-scrollbar-corner {
    background-color: transparent;
  }
}

.scroll-panel > p {
  margin: 0;
}