first commit

This commit is contained in:
2024-04-08 21:34:02 +08:00
commit a41a7f32ab
223 changed files with 44629 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
/* 美化滚动条 */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-thumb {
width: 6px;
border-radius: 6px;
background-color: var(--color-neutral-3);
}
::-webkit-scrollbar-thumb:hover {
width: 6px;
background-color: var(--color-neutral-4);
}
::-ms-scrollbar-thumb {
width: 6px;
border-radius: 6px;
background-color: var(--color-neutral-3);
}