How to remove the vertical scrollbar?

1
I want to remove the vertical scroll bar from my default layout, but i still want to use the scrolling functionality. I am not good at styling and tryed to add styling on elements in the modeler and in the style sheets, but i dont get it to work.   Does anyone have some simple instructions to remove this scroll bar?   
asked
2 answers
11

Hi May,

Please use the below css code in which page that you need to hide the vertical scroll

/*

overflow-y: hidden;

*/

answered
1

By setting the scrollbar-width to none:

Add a class to the scrollcontainer and then somewhere in your main.scss or another of your own scss files add:

MyScrollcontainerClass{
  scrollbar-width: none;
{

 

answered