Search code examples
cssreactjsantd

Antdv5 table scroll style


I am trying to change the style of scroll bar in antd5 table version.

I have already changed the style in v4 it was worked but after upgrading it is not working

.ant-table-body::-webkit-scrollbar{ width:4px

It is working v4 but not in v5

Any suggestions to make it work


Solution

  • This should do it!

    .ant-table-wrapper .ant-table{
      scrollbar-color: unset;
    }