数据可视化大屏
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

19 行
387B

  1. /* You can add global styles to this file, and also import other style files */
  2. /* 修改滚动条宽度、背景色和滑块颜色 */
  3. ::-webkit-scrollbar {
  4. width: 12px;
  5. }
  6. ::-webkit-scrollbar-track {
  7. background: #f1f1f1;
  8. }
  9. ::-webkit-scrollbar-thumb {
  10. background: #888;
  11. }
  12. /* 鼠标悬停时滚动条滑块颜色 */
  13. ::-webkit-scrollbar-thumb:hover {
  14. background: #555;
  15. }