public.less 385 字节
Newer Older
V
vben 已提交
1 2 3 4 5
.app-svg-loading {
  position: relative;
  width: auto;
}

陈文彬 已提交
6
::-webkit-scrollbar {
V
vben 已提交
7 8
  width: 6px;
  height: 6px;
陈文彬 已提交
9 10
}

V
vben 已提交
11 12 13
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}
陈文彬 已提交
14 15

::-webkit-scrollbar-thumb {
V
vben 已提交
16
  background: rgba(0, 0, 0, 0.2);
陈文彬 已提交
17 18 19 20 21 22 23
  border-radius: 4px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb:hover {
  background: @border-color-dark;
}