ilyoff
9/11/2019 - 12:21 PM

hide scrollbar with css

div {
  scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */

    /* Chrome Safari */
    &::-webkit-scrollbar {
      width: 0;
      height: 0;
    }
}