Custom scrollbars

Koen van Gilst

Koen van Gilst / December 12, 2021

1 min read

Here's an example of how to do it:

::-webkit-scrollbar {
  width: 6px;
  height: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #d9dadb;
  border-radius: 12px;
}