1html {
2 overflow: scroll;
3}
4::-webkit-scrollbar {
5 width: 0px;
6 background: transparent; /* make scrollbar transparent */
7}
1// Sass Mixing
2@mixin hideScrollbar {
3 &::-webkit-scrollbar {
4 width: 0 !important
5 }
6 -ms-overflow-style: none;
7 scrollbar-width: none;
8}