滚动条样式修改

master
toesbieya 6 years ago
parent 46e95edb41
commit 29ab589a96
  1. 16
      vue/src/asset/style/index.scss

@ -43,17 +43,23 @@ a:hover {
text-decoration: none; text-decoration: none;
} }
//滚动条样式修改 //非移动端的滚动条样式修改
@media (min-width: 500px) {
::-webkit-scrollbar { ::-webkit-scrollbar {
height: 6px;
width: 6px; width: 6px;
&:horizontal {
height: 6px;
}
&-thumb { &-thumb {
background-color: rgba(#909399, 0.3); width: 6px;
transition: .3s background-color; border-radius: 5px;
background-color: rgba($--color-primary, 0.8);
&:hover { &:hover {
background: rgba(#909399, 0.5); background-color: rgba($--color-primary, 1);
}
} }
} }
} }

Loading…
Cancel
Save