Custom CSS to change the scroll colors on table block

Just paste this code in your page settings → Custom code → Footer, replace the BLOCKID with your block name, save and preview.

<style>
#BLOCLID .ag-root ::-webkit-scrollbar-track-piece {
    background: green;
}
#BLOCKID .ag-root ::-webkit-scrollbar-thumb {
    background: red!important;
}
</style>
3 Likes