go-view/src/styles/common/format.scss
2022-04-21 22:35:28 +08:00

23 lines
345 B
SCSS

body {
overflow: hidden;
}
* {
list-style: none;
}
/* 设置滚动条的样式 */
::-webkit-scrollbar {
width: 8px;
}
/* 滚动槽 */
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
border-radius: 2px;
}
/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
border-radius: 4px;
background: #a3a3a3;
}