ProTable修改滚动条样式

proComponents ^2.7.1

调整proTable滚动条样式

.ant-pro-table {
  .ant-table-content {
    scrollbar-width: auto;
    scrollbar-color: auto;
  }

  ::-webkit-scrollbar {
    height: 6px;
  }

  ::-webkit-scrollbar-track {
    display: none;
  }

  ::-webkit-scrollbar-thumb {
    margin-top: 5px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 10%);
  }
}
posted @ 2024-08-21 10:38  Karle  阅读(54)  评论(0编辑  收藏  举报