Thin scrollbar CSS for RG

I am using css and ID attribute to remove scroll bars from RG:

#REPLACEME::-webkit-scrollbar { display: none; }
#REPLACEME{
-ms-overflow-style: none;
scrollbar-width: none;
}

However, for one RG I would like to have a thin scroll bar.

Can anyone give me the CSS to achieve this?

Cheers Simon

change the scrollbar-width value from none to 5px
That should be quite thin. You can play with the width value to achieve the right look

Hey mate…thanks…but what about the other reference to ‘none’

#REPLACEME::-webkit-scrollbar { display: none; }
#REPLACEME{
-ms-overflow-style: none;
scrollbar-width: 5px;
}

you can remove the ‘display:none’ line

1 Like