This is the detailed procedure to disable the scroll bar of Repeating Groups in Vertical Scroll mode.
-
Add a HTML Element as shown below.
-
Add the following CSS section.
/* Hide scrollbar for Chrome, Safari and Opera */ ::-webkit-scrollbar { display: none; } body{ -ms-overflow-style: none; /* IE and Edge */ scrollbar-width: none; /* Firefox */ }
Note: For firefox browser “scrollbar-width: none;” dosent seem to work. This could an issue with bubble apps in Firefox. Not 100% sure about that.
In order to remove the scrollbar from Firefox, we need to hide the scrollbar element. The solution is provided in this thread discussion mentioned below.
