vue 改变滚动条样式

在这里插入图片描述

.stageContent {
    
    
  &::-webkit-scrollbar {
    
    
    width: 8px;
    height: 10px;
  }
  
  &::-webkit-scrollbar-track {
    
    
    background: none;
  }
  
  &::-webkit-scrollbar-thumb {
    
    
    border-radius: 10px;
    background-color: #405781;

  }
}

猜你喜欢

转载自blog.csdn.net/qq_43780814/article/details/121328052