feat(projects): 新增BasicLayout布局

This commit is contained in:
Soybean
2022-01-07 00:26:59 +08:00
parent 0c5770dfd2
commit 006467a062
13 changed files with 150 additions and 81 deletions

View File

@ -1,4 +1,3 @@
@import './scrollbar.css';
@import './transition.css';
html, body, #app {

View File

@ -1,7 +1,7 @@
/*---滚动条默认显示样式--*/
::-webkit-scrollbar-thumb {
background-color: #d9d9d9;
border-radius: 8px;
border-radius: 4px;
}
/*---鼠标点击滚动条显示样式--*/
::-webkit-scrollbar-thumb:hover {
@ -10,9 +10,10 @@
}
/*---滚动条大小--*/
::-webkit-scrollbar {
width: 8px;
height: 10px;
width: 5px;
height: 5px;
}
/*---滚动框背景样式--*/
::-webkit-scrollbar-track-piece {
background-color: rgba(0, 0, 0, 0);