feat(projects): 添加抽屉

This commit is contained in:
Soybean
2022-01-07 18:51:06 +08:00
parent 0653fb144f
commit 10e4d81bd6
15 changed files with 356 additions and 14 deletions

View File

@ -1,17 +1,17 @@
/*---滚动条默认显示样式--*/
::-webkit-scrollbar-thumb {
background-color: #d9d9d9;
border-radius: 4px;
background-color: #e6e6e6;
border-radius: 6px;
}
/*---鼠标点击滚动条显示样式--*/
::-webkit-scrollbar-thumb:hover {
background-color: #d9d9d9;
border-radius: 4px;
background-color: #e6e6e6;
border-radius: 6px;
}
/*---滚动条大小--*/
::-webkit-scrollbar {
width: 5px;
height: 5px;
width: 6px;
height: 6px;
}
/*---滚动框背景样式--*/
@ -19,3 +19,8 @@
background-color: rgba(0, 0, 0, 0);
border-radius: 0;
}
html {
scrollbar-width: thin;
scrollbar-color: e6e6e6 transparent;
}