prefixCls为项目做的样式隔离 项目名前缀
.${prefixCls}-table-body {
/**important 为解决乾坤框架内样式优先度被冲掉问题 */
scrollbar-width: auto;
scrollbar-color: auto;
&::-webkit-scrollbar {
width: 10px;
height: 10px;
}
&::-webkit-scrollbar-track {
background-color: transparent !important;
}
&::-webkit-scrollbar-thumb {
border: 2px solid transparent !important;
background-clip: padding-box !important;
border-radius: 8px;
}
&::-webkit-scrollbar-thumb:hover {
border-width: 0 !important;
}
}