Sign in

microservice / itcast-authority-web · Files

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • itcast-authority-web
  • src
  • styles
  • scroll.scss
  • 初始化权限管理也没见
      441d4b7c
    shaofan authored
    2025-10-29 14:33:07 +0800  
    Browse Code »
scroll.scss 410 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/* Mixins */
::-webkit-scrollbar  
{  
    width: 8px;
}
  
/*定义滚动条轨道 内阴影+圆角*/  
::-webkit-scrollbar-track  
{  
    border-radius: 10px;  
    // background-color: rgba(0,0,0,0.1); 
} 
  
/*定义滑块 内阴影+圆角*/  
::-webkit-scrollbar-thumb  
{  
    border-radius: 10px;  
    -webkit-box-shadow: inset 0 0 6px rgba(244,244,244,1);  
    background-color: rgba(0,0,0,0.1);
}