`
/全局滾動條樣式/
::-webkit-scrollbar {
width: 5px;
height: 14px;
}
::-webkit-scrollbar-thumb {
background-color: #b6b6b6;
}
/全局滾動條樣式結束/
/* el-table 滾動條樣式 */
.el-table--scrollable-y .el-table__body-wrapper::-webkit-scrollbar {
width: 10px;
}
.el-table--scrollable-y .el-table__body-wrapper::-webkit-scrollbar-thumb {
border-radius: 10px;
background: rgba(0, 0, 0, 0.2);
}
.el-table--scrollable-y .el-table__body-wrapper::-webkit-scrollbar-track {
border-radius: 10px;
background: rgba(0, 0, 0, 0.1);
}
.el-table__header-wrapper .has-gutter th:nth-last-child(2) {
border-right: 0;
}
/* el-table 滾動條樣式結束 */
`