45 lines
737 B
Plaintext
45 lines
737 B
Plaintext
// @primary-bg-color: #f8f8f8;
|
|
@import '../src/assets/styles/variable.less';
|
|
|
|
html, body {
|
|
background-color: @primary-bg-color;
|
|
padding: 0;
|
|
margin: 0;
|
|
height: 100%;
|
|
}
|
|
#app {
|
|
height: 100%;
|
|
}
|
|
|
|
/* 选择滚动条 */
|
|
::-webkit-scrollbar {
|
|
width: 8px; /* 滚动条宽度 */
|
|
}
|
|
|
|
/* 滚动条轨道 */
|
|
::-webkit-scrollbar-track {
|
|
background-color: #fff;
|
|
}
|
|
|
|
/* 滚动条滑块 */
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: rgba(0, 0, 0, 0.15);
|
|
border-radius: 15px;
|
|
}
|
|
|
|
/* 滚动条滑块悬停 */
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background-color: rgba(0, 0, 0, 0.25);
|
|
}
|
|
|
|
.normal-container {
|
|
padding: 16px 24px;
|
|
border-radius: 6px;
|
|
background-color: #fff;
|
|
}
|
|
.mt-8 {
|
|
margin-top: 8px;
|
|
}
|
|
.mt-16 {
|
|
margin-top: 16px;
|
|
} |