You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
682 B
40 lines
682 B
1 year ago
|
@import url(./el-reset.scss);
|
||
|
|
||
|
body {
|
||
|
input,
|
||
|
textarea {
|
||
|
caret-color: white;
|
||
|
}
|
||
|
|
||
|
div {
|
||
|
/* 滚动条整体部分 */
|
||
|
&::-webkit-scrollbar {
|
||
|
width: 6px !important;
|
||
|
height: 6px !important;
|
||
|
padding: 15px;
|
||
|
}
|
||
|
|
||
|
/* 滚动条的轨道 */
|
||
|
&::-webkit-scrollbar-track {
|
||
|
background: rgba(17, 72, 90, 0.4);
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
|
||
|
/* 滚动条的滑块按钮 */
|
||
|
&::-webkit-scrollbar-thumb {
|
||
|
background: #3785a0;
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
|
||
|
/* 上下箭头 */
|
||
|
&::-webkit-scrollbar-button {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
/* 滚动条角 */
|
||
|
&::-webkit-scrollbar-corner {
|
||
|
display: none;
|
||
|
}
|
||
|
}
|
||
|
}
|