Files
FastapiAdmin/frontend/web/src/styles/core/reset.scss
T
zhangtao 53d2a9d13e chore: cleanup old frontend code and update project configs
This commit removes the deprecated frontend/web-old directory, updates various project configuration files including tsconfig, vite config, environment variables, and backend data models. It also fixes several API paths, adds tenant awareness to multiple models, and makes minor UI adjustments.
2026-05-27 01:12:03 +08:00

43 lines
780 B
SCSS
Executable File

@charset "UTF-8";
/* 滚动条 */
/* 滚动条整体部分,必须要设置 */
::-webkit-scrollbar {
width: 4px !important;
height: 0 !important;
}
/* 滚动条的轨道 */
::-webkit-scrollbar-track {
background-color: var(--fa-gray-200);
}
/* 滚动条的滑块按钮 */
::-webkit-scrollbar-thumb {
background-color: #ccc !important;
border-radius: 5px;
-webkit-transition: all 0.2s;
transition: all 0.2s;
}
::-webkit-scrollbar-thumb:hover {
background-color: #b0abab !important;
}
/* 滚动条的上下两端的按钮 */
::-webkit-scrollbar-button {
width: 0;
height: 0;
}
.dark {
::-webkit-scrollbar-track {
background-color: var(--default-bg-color);
}
::-webkit-scrollbar-thumb {
background-color: var(--fa-gray-300) !important;
}
}