Hey RM users.
Here comes a little hint if you want to disable/hide the scrollbar:
for vertical pageorder add this to your css:
.html::-webkit-scrollbar {
width: 0px;
}
.html {
scrollbar-width: none;
-ms-overflow-style: none;
}
for projects with a horizontal pageorder:
.content-scroll-wrapper::-webkit-scrollbar {
width: 0px;
}
.content-scroll-wrapper {
scrollbar-width: none;
-ms-overflow-style: none;
}
I hope someone will find this useful!
All the best