企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
### 默认滚动条修改 ***** ``` /* 设置滚动条的样式 开始 */ ::-webkit-scrollbar {     width: 8px;   }   /* 滚动槽 */   ::-webkit-scrollbar-track {     background-color: rgba(0, 0, 0, 0.1);     //   border-radius: 8px;   }   /* 滚动条滑块 */   ::-webkit-scrollbar-thumb {     border-radius: 8px;     background-color: rgba(0, 0, 0, 0.2);     &:hover {       background-color: rgba(0, 0, 0, 0.3);     }   }   ::-webkit-scrollbar-thumb:window-inactive {     border-radius: 8px;     background-color: rgba(0, 0, 0, 0.2);   }   /* 设置滚动条的样式 结束 */ ``` 参考:https://segmentfault.com/a/1190000003708894