Ant Design 滚动条样式修改

    // table scrollbar
    .ant-table-body {
      &::-webkit-scrollbar {
        height: 5px;
      }
      &::-webkit-scrollbar-thumb {
        border-radius: 5px;
        -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
        background: rgba(129, 129, 128, 0.85);
      }
      &::-webkit-scrollbar-track {
        -webkit-box-shadow: none;
        border-radius: 0;
        background: rgba(0, 4, 40, 0.06);
      }
    }

你可能感兴趣的:(前端,css,html,css3)