Anthony2511
1/3/2020 - 9:09 AM

Custom scrollbar

::-webkit-scrollbar {
  width: 8px; /* width scroll-y */
  height: 8px; /* height scroll-x */
}

/* Track */
::-webkit-scrollbar-track {
  background: color;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: color;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: color;
}