How to style vertical scroller in a Repeating Group?

I was implementing a repeating group in my app but the vertical scroller on the right is looking off for my app. Is there a way we can style it differently? Please suggest.

Thanks in advance !
Aman

Throw this in your apps header

<style>
::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
background-color: #474852;
}
::-webkit-scrollbar
{
width: 12px;
background-color: #474852;
}
::-webkit-scrollbar-thumb
{
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: #23276D;
}
</style>
7 Likes

Thank you very much @1danielbaker !!

1 Like

What does it do?

@1danielbaker, Do you use @jarrad’s CSS plugin tool to get this to work?

I tried it but it didn’t seem to do anything. Looking to change the color of the scroll bars.

No I drop it in the the head of your app, you can find it in the settings tab under SEO & Metatags

Message me if you need any other help!

@Thank you @1danielbaker. I have just managed to remove scrollbar from my pages that are meant for printing.

Do you know how we can apply the style on selected pages and not all pages?

1 Like