2024-01-05 17:28:54 +08:00
|
|
|
@import "./transition";
|
|
|
|
|
@import "./reset";
|
|
|
|
|
|
|
|
|
|
.app-container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: calc(100vh - 70px);
|
|
|
|
|
background: #fff;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
|
|
|
|
&-title {
|
|
|
|
|
position: relative;
|
|
|
|
|
margin-left: 34px;
|
|
|
|
|
font-family: SourceHanSansCN, sans-serif;
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 5px;
|
|
|
|
|
left: -30px;
|
|
|
|
|
display: block;
|
|
|
|
|
width: 10px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
content: "";
|
2024-01-22 18:02:18 +08:00
|
|
|
background: linear-gradient(90deg,
|
|
|
|
|
#3db8ff 0%,
|
|
|
|
|
rgb(53 138 225 / 77%) 52%,
|
|
|
|
|
#3db8ff 100%);
|
2024-01-05 17:28:54 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 设置滚动条的样式 */
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
width: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 滚动槽 */
|
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
box-shadow: inset 0 0 6px rgb(0 0 0 / 0%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 滚动条滑块 */
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
|
background: rgb(123 157 213 / 50%);
|
|
|
|
|
border-radius: 4px;
|
2024-01-22 18:02:18 +08:00
|
|
|
}
|